/*
 * jQuery 1.2.3 - Start Superfish
 * 
		// initialise plugins
		jQuery(function(){
			jQuery('ul.sf-menu').superfish();
		});
 */

// initialise Superfish 
 
    $(document).ready(function() { 
        $('ul.sf-menu').superfish({ 
            delay:       800,                            	// 800  m.second delay on mouseout 
            animation:   {opacity:'show',height:'show'},  	// fade-in and slide-down animation 
            speed:       'normal',                          // faster animation speed 
            autoArrows:  true,                           	// enable generation of arrow mark-up 
            dropShadows: true                            	// enable drop shadows 
        }); 
    }); 
 

