$(document).ready(function(){
	$('.landingLinks li').hover(function() {
		$(this).css('background','#ffffff url(../img/landing_arrow_lft_blk.gif) 395px center no-repeat');
	}, function() {
		$(this).css('background','#ffffff url(../img/landing_arrow_lft_gry.gif) 395px center no-repeat');
	});
});