


	
$(document).ready(function(){





   //When mouse rolls over
    $("#nav li").mouseover(function(){
        $(this).stop().animate({width:'130px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });
	
	 $("#nav li.blankbottom").mouseover(function(){
        $(this).stop().animate({width:'100px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });
	

    //When mouse is removed
   
	
	$("#nav li.homelink").mouseout(function(){
     
		$(this).stop().animate({width:'100px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });
	
	$("#nav li.companylink").mouseout(function(){
     
		$(this).stop().animate({width:'100px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });
	
	$("#nav li.serviceslink").mouseout(function(){
     
		$(this).stop().animate({width:'100px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });
	
	$("#nav li.clientslink").mouseout(function(){
     
		$(this).stop().animate({width:'100px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });
	
	$("#nav li.contactlink").mouseout(function(){
     
		$(this).stop().animate({width:'100px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });
	
	$("#nav li.learnlink").mouseout(function(){
     
		$(this).stop().animate({width:'100px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });
	
	
	
	
	
	
								   

	


});
