$(function (){ 

	$('ul.leftmenu').find('li').hover(function () {

		$(this).find('a').css({'color':'#fff'});

	}, function () {

		$(this).find('a').css({'color':'#459dd7'});

	});


});




