$(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
	$(".purple").mouseover(function(){
		$(this).stop().animate({'top':'0px'},{duration:400, easing: 'jswing'})
	});
	$(".blue").mouseover(function(){
		$(this).stop().animate({'top':'0px'},{queue: false, duration:300, easing: 'jswing'})
	});
	$(".green").mouseover(function(){
		$(this).stop().animate({'top':'0px'},{queue: false, duration:300, easing: 'jswing'})
	});
	
	//When mouse is removed
	$(".purple").mouseout(function(){
		$(this).stop().animate({'top':'53px'},{duration:400, easing: 'jswing'})
	});
	$(".blue").mouseout(function(){
		$(this).stop().animate({'top':'53px'},{queue:false, duration:300, easing: 'jswing'})
	});
	$(".green").mouseout(function(){
		$(this).stop().animate({'top':'53px'},{queue:false, duration:300, easing: 'jswing'})
	});
	

});


