$( document ).ready(

	function() 
	{
						
		$( '#navigation > ul > li' ).hover(
		
			function()
			{
						
				$( this ).addClass( 'over' )
			
			} , // function
			function()
			{

				$( this ).removeClass( 'over' )
			
			} // function
		
		) // $.hover
			
	} // function
	
) // $.ready