$(document).ready(function(){

		/* Make the hovering action work in all browsers (meaning IE) */
		
		$('#navbar ul li').hover(
		
			function(){
				$(this).addClass('hover');
			},
			
			function(){
				$(this).removeClass('hover');
			}
			
		);
});
