// JavaScript Document

$(document).ready(function() {
	$('#mainNavigation ul li').hover(
			function() {
				$(this).css("background-color", "#FFFFFF");
			}, 
			function() {
				$(this).css("background-color", ""); 
			}
		);
});