


	
$(document).ready(function(){





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

    //When mouse is removed
   
	
	$("#nav li.homelink").mouseout(function(){
     
		$(this).stop().animate({width:'100px'},{queue:false, duration:600, })
    });
	
	$("#nav li.biolink").mouseout(function(){
     
		$(this).stop().animate({width:'100px'},{queue:false, duration:600, })
    });
	
	$("#nav li.tourlink").mouseout(function(){
     
		$(this).stop().animate({width:'100px'},{queue:false, duration:600, })
    });
	
	$("#nav li.medialink").mouseout(function(){
     
		$(this).stop().animate({width:'100px'},{queue:false, duration:600, })
    });
	
	$("#nav li.shoplink").mouseout(function(){
     
		$(this).stop().animate({width:'100px'},{queue:false, duration:600, })
    });
	$("#nav li.contactlink").mouseout(function(){
     
		$(this).stop().animate({width:'100px'},{queue:false, duration:600, })
    });
	
	
	
	
	
	
	
	
								   

	 $("#nav li").onclick(function(){
        $(this).stop().animate({width:'130px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });


});
