$(document).ready(function() {
	
$("ul#topnav li").hover(function() { 
	$(this).css({ 'background' : '#ffffff'}); 
	$(this).css({ 'color' : '#000000'});
	$(this).find("span").show(); 
	},
function() { 
	$(this).css({ 'background' : '#000000'}); 
	$(this).css({ 'color' : '#ffffff'});
	$(this).find("span").hide(); 
});
$("ul#topnav li span").mouseenter(function() { 
	$("ul#topnav li").css({ 'background' : '#000000'}); 
	$("ul#topnav li").css({ 'color' : '#ffffff'});
	});	
/*

$("ul#topnav li").mouseenter(function(){
    $(this).css({ 'background' : '#ffffff'}); 
	$(this).css({ 'color' : '#000000'});
	$(this).find("span").show(); 
    }).mouseleave(function(){
    $(this).css({ 'background' : '#000000'}); 
	$(this).css({ 'color' : '#ffffff'});
	$(this).find("span").hide(); 
    });
    
    */
}); ///end
