$(document).ready(function(){
	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	
	//Remove outline from links
	$("a").click(function(){
		$(this).blur();
	});
	
	//When mouse rolls over about
	$("li.about").mouseover(function(){
		$(this).stop().animate({height:'60px', width:'456px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed about
	$("li.about").mouseout(function(){
		$(this).stop().animate({height:'45px', width:'318px'},{queue:false, duration:100, easing: 'easeOutBounce'})
	});
	
	//When mouse rolls over fitguide
	$("li.wheretobuy").mouseover(function(){
		$(this).stop().animate({height:'63px', width:'360px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed fitguide
	$("li.wheretobuy").mouseout(function(){
		$(this).stop().animate({height:'45px', width:'237px'},{queue:false, duration:100, easing: 'easeOutBounce'})
	});	
	
	//When mouse rolls over fairtrade
	$("li.fairtrade").mouseover(function(){
		$(this).stop().animate({height:'72px', width:'304px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed fairtrade
	$("li.fairtrade").mouseout(function(){
		$(this).stop().animate({height:'45px', width:'169px'},{queue:false, duration:100, easing: 'easeOutBounce'})
	});	
	
	
	//When mouse rolls over twitter
	$("li.lookbook").mouseover(function(){
		$(this).stop().animate({height:'73px', width:'315px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed twitter
	$("li.lookbook").mouseout(function(){
		$(this).stop().animate({height:'45px', width:'175px'},{queue:false, duration:100, easing: 'easeOutBounce'})
	});	
	
	//When mouse rolls over blog
	$("li.magazine").mouseover(function(){
		$(this).stop().animate({height:'78px', width:'319px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed blog
	$("li.magazine").mouseout(function(){
		$(this).stop().animate({height:'45px', width:'166px'},{queue:false, duration:100, easing: 'easeOutBounce'})
	});	
	
	//When mouse rolls over contact
	$("li.contact").mouseover(function(){
		$(this).stop().animate({height:'57px', width:'425px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed contact
	$("li.contact").mouseout(function(){
		$(this).stop().animate({height:'45px', width:'305px'},{queue:false, duration:100, easing: 'easeOutBounce'})
	});		
	
		//When mouse rolls over webshop
	$("li.webshop").mouseover(function(){
		$(this).stop().animate({height:'74px', width:'292px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed webshop
	$("li.webshop").mouseout(function(){
		$(this).stop().animate({height:'45px', width:'160px'},{queue:false, duration:100, easing: 'easeOutBounce'})
	});	
	
});
