$(document).ready(function() {
	
$("ul#header-menu li").hover(function() {
	$(this).css({ 'background' : '#9d0619'});
	$(this).find("a").css({ 'color' : '#fff'});
	$(this).find("span a").css({ 'color' : '#000'});
	$(this).find("span").show(); 
} , function() { 
	$(this).css({ 'background' : 'none'}); 
	$(this).find("a").css({ 'color' : '#666'});
	$(this).find("span").hide(); 
});
	
});

