$(document).ready(
	function() {
		$('ul#nav').superfish({ 
			hoverClass:  'over',
			delay:       50,                            // one second delay on mouseout 
			animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
			speed:       'fast',                          // faster animation speed 
			autoArrows:  false                           // disable generation of arrow mark-up 
		});
		
		if($('.quicklink').length > 0) {
			$('.quicklink').hover(function(){
				$(this).css('z-index',999);
				$(this).children('.detail').slideToggle("fast");
			}, function(){
				$(this).css('z-index',10);
				$(this).children('.detail').slideToggle("fast");
			});
		}
	}
);
