$(document).ready(function() {
	
	$("ul#topnav li a").hover(function() { //Hover over event on list item
		$(this).css({'color' : '#356c90'}); //Add background color + image on hovered list item
		$(this).find("span").show(); //Show the subnav
	} , function() { //on hover out...
		$(this).css({'color' : '#fff'}); //Ditch the background
		$(this).find("span").hide(); //Hide the subnav
	});
	
});
