$(document).ready(function(){
	$('#menu ul li a').hover(function(){
		$(this).parent().find('span.arrow').css('color','#fff');
		$(this).parent().find('span.shadow').show();
	}, function(){
		$(this).parent().find('span.shadow').hide();	
		$(this).parent().find('span.arrow').css('color', '#d49090');
	});
});