$(document).ready(function(){ 
	$(".menu a").each(function () {
		$(this).mouseover( function() {
				$(this).css("color","#c0c0c0");
		});
		$(this).mouseout( function() {
				$(this).css("color","white");
		});
	});
	$(".submenu a").each(function () {
		$(this).mouseover( function() {
				$(this).css("background-color","#c9c7a9");
		});
		$(this).mouseout( function() {
				$(this).css("background-color","#dcdab8");
		});
	});
	
});
