jQuery.noConflict();
jQuery(document).ready(function() {	
jQuery("ul#topnav li").hover(function() { //Hover over event on list item
var color;
var excolor;
color=(jQuery(this).find("span").css('background-color'));
excolor=(jQuery(this).css('background-color'));
//alert(excolor);
	jQuery(this).css({ 'background' : color}); //Add background color + image on hovered list item
	jQuery(this).find("span").show(); //Show the subnav
} , function() { //on hover out...
	jQuery(this).css({ 'background' : 'none'}); //Ditch the background
	jQuery(this).find("span").hide(); //Hide the subnav
	
});	
});


