    jQuery(document).ready(function() { 
        jQuery('ul.sf-menu').superfish({ 
            delay:       1000,                            // one second delay on mouseout 
            animation:   {height:'show'},  				  // fade-in and slide-down animation 
            autoArrows:  false,                           // disable generation of arrow mark-up 
            dropShadows: false                            // disable drop shadows 
        }); 
    }); 
    jQuery(function() {
        jQuery('.rollover').hover(function() {
            var currentImg = jQuery(this).attr('src');
            jQuery(this).attr('src', jQuery(this).attr('hover'));
            jQuery(this).attr('hover', currentImg);
        }, function() {
            var currentImg = jQuery(this).attr('src');
            jQuery(this).attr('src', jQuery(this).attr('hover'));
            jQuery(this).attr('hover', currentImg);
        });
    });

