$(document).ready(function() {	
$("ul#topnav li").hover(function() { //Hover over event on list item
	$(this).css({ 'background' : '#6699CC url(images/topnav_active.png) repeat-x bottom left'}); //Add background color + image on hovered list item
	$(this).find("span").show(); //Show the subnav
	$("ol li").css({ 'background' : 'none'});
} , 
function() { //on hover out...
	$(this).css({ 'background' : 'none'}); //Ditch the background
	$(this).find("span").hide(); //Hide the subnav
});
	
});