
jQuery(document).ready(function(){      
    jQuery = jQuery.noConflict();   
    


       jQuery("ul.sf-menu").superfish({ 
			animation: {height:'show'},
			speed: 'fast'
                               // due to slight rounding differences and font-family 
        });  // call supersubs first, then superfish, so that subs are 
                         // not display:none when measuring. Call before initialising 
                         // containing tabs for same reason. 
	
	// Add Some Classes To Remove BG On Last LI    
	jQuery('#topmenu ul.menu li:last').addClass("last");
	jQuery('#topmenu ul li:first').addClass("first"); 
	
	jQuery('#topmod ul li:last').addClass("last");
	jQuery('#topmod ul li:first').addClass("first"); 
	


});