$(document).ready(function(){
$("#top_menu ul li").mouseover(function () {
	$(this).css("background-color", "#3F7DBD");
	}
	);
$("#top_menu ul li").mouseout(function () {
	$(this).css("background", "none");
	}
	)
});

