// JavaScript Document



// expand/collapse divs
jQuery(document).ready(function(){
$('.toggle .expander').click(function() {
$(this).next().toggle('fast');
return false;
}).next().hide();
});

//set hover class for anything
jQuery(document).ready(function() {
  $('.expander').hover(function() {
    $(this).addClass('hover');
  }, function() {
    $(this).removeClass('hover');
  });
});
