$(document).ready(
		function()
		{
		 	$("#nav").append('<div id="shad"></div>');
			$("#shad").hide();
					   
		   	$("#nav li").hover(
			   function()
			   {

					if(	$(this).position().left<850)
					{
						
						x=$(this).position().left+$(this).width();
						$("#shad").css('top', 0).css('left', x).show();
						
						
					}		   
			   },
			   function()
			   {
					$("#shad").hide();		   
			   }
		   	);
		   
		   
		  	$("#nav li ul li").hover(
			function()
			   {
					$("#shad").hide();			   
			   },
			function()
			   {	 
			   }
		   );	
		   
			
		   $('#client').innerfade(
		   		{ 
					animationtype: 'slide', 
					speed: 750, 
					timeout: 5000, 
					type: 'random', 
					containerheight: '1em' 
				}
			);  
		   	   
		    
		 }
	 );
