$(document).ready(function() {
		$('.nav_item_first, .nav_item').hover(function(){
			$(this).css('cursor', 'pointer');
			$(this).css('background-color', '#FFFFFF');
			$(this).css('background-image', 'url(/images/corporate/nav_arrow_selected.gif)');
		}, function () {
			$(this).css('cursor', 'default');
			$(this).css('background-color', '#d6e3eb');
			$(this).css('background-image', 'url(/images/corporate/nav_arrow.gif)');
		});
});