
(function($){
	// Start the dropdown menu
	$('ul.sf-menu').superfish({
		delay: 200,												// delay on mouseout
		animation: {opacity:'show',height:'show'},
		autoArrows: false,										// disable generation of arrow mark-up
		dropShadows: false,									// disable drop shadows
		speed: "fast"
	});

	// Move dropdown links on hover
	$(".sf-menu ul a").css(
	{
		paddingLeft: "15px",
		backgroundPosition: "0px 12px"
	});

	$(".sf-menu ul a").hover(function()
	{
		$(this).stop().animate(
		{
			paddingLeft: "25px",
			backgroundPosition: "10px 12px"
		},
		'fast');
	}, function(){

		$(this).stop().animate(
		{
			paddingLeft: "15px",
			backgroundPosition: "0px 12px"
		}, 'fast');
	});

	// Set background of dropdown to 90% opacity - fix for IE naturally.
	$(".sf-menu li ul").css({});
//	});
})(jQuery);
//---------------------------------------------

//--------------------------------------------


