jQuery(document).ready(function(){
			
				jQuery("ul.fish li.drop").hoverIntent({
				over: makeTall, 
				timeout: 200, 
				out: makeShort
			});
		}); // close document.ready

		function makeTall(){  jQuery('ul',this).slideDown("normal");}
		function makeShort(){ jQuery('ul',this).slideUp("fast");}
        
        
jQuery(document).ready(function(){		
								
jQuery("div.home-menu").hover(
function() {
jQuery(this).stop().animate({"margin-top": "-10px"}, "fast");
},
function() {
jQuery(this).stop().animate({"margin-top": "0px"}, "fast");
});
}); // close document.ready

      jQuery(function () {
        jQuery("#sidebar").stickySidebar({
            timer: 700,
			speed: 800,
			constrain: false,
			easing: "easeInOutSine"
        });
      });
