
/* **************************************** */
/* 											*/
/* 				DROP DOWN MENU				*/
/* 		   (custom with hoverIntent)		*/
/* 											*/
/* **************************************** */

/*
	$(function () {		// shorthand for $(document).ready() BTW
		$('#catcurrent').hoverIntent(makeTall_1,makeShort_1);
		
		$('#cats').hoverIntent({
				sensitivity: 3, 
				interval: 0, 
				over: makeTall_2, 
				timeout: 1200, 
				out: makeShort_2
			});
	})
		function makeTall_1(){ $("#cats").slideDown(200);}
		function makeShort_1(){ $('#cats').show();}
	
		function makeTall_2(){ $('#cats').show();}
		function makeShort_2(){ $('#cats').slideUp(200);}
*/

/* **************************************** */
/* 											*/
/* 				SUPERFISH MENU				*/
/* 											*/
/* **************************************** */

	
	$(document).ready(function(){
		$("ul.sf-menu").superfish({
			animation: {height:'show'},   // slide-down effect without fade-in
			delay:     1200               // 1.2 second delay on mouseout
		});
	});
	