
jQuery(document).ready(function() {
     jQuery = jQuery.noConflict();

/*	jQuery("ul.dropdown li.dir").hover(function() {
			jQuery(this).children().not('a').fadeIn('slow').show(); 
		}, function(){	//On Hover Out
			jQuery(this).children().not('a').fadeOut('slow');
	});


    
    
Old Stuff
    // SubMenu
	jQuery('ul.dropdown li.dir > > a').mouseover(function () {
		jQuery(this).animate({ fontSize: "14px", paddingLeft: "20px" }, 50 );
    });
	jQuery('ul.dropdown li a').mouseout(function () {
		jQuery(this).animate({ fontSize: "12px", paddingLeft: "10px" }, 50 );
	});*/

 
    jQuery('ul.dropdown').superfish({ 
         delay:      1000,                            // one second delay on mouseout 
         animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
         speed:       'medium',                          // faster animation speed 
         autoArrows:  false,  
         disableHI	: true,                         
         dropShadows: false                            // disable drop shadows 
     });

});
