$(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
	$(".anitabPhoneSurc").mouseover(function(){
		$(this).stop().animate({top:'-13px'},{queue:false, duration:600, easing: 'easeOutCubic'})
	});
	
	$(".anitabLogoSurc").mouseover(function(){
		$(".anitabPhoneSurc").stop().animate({top:'-13px'},{queue:false, duration:600, easing: 'easeOutCubic'})
	});


	$(".anitabPhoneShopCode").mouseover(function(){
		$(this).stop().animate({top:'-13px'},{queue:false, duration:600, easing: 'easeOutCubic'})
	});
	
	$(".anitabLogoShopCode").mouseover(function(){
		$(".anitabPhoneShopCode").stop().animate({top:'-13px'},{queue:false, duration:600, easing: 'easeOutCubic'})
	});


	$(".anitabPhoneTasteBuddy").mouseover(function(){
		$(this).stop().animate({top:'-13px'},{queue:false, duration:600, easing: 'easeOutCubic'})
	});
	
	$(".anitabLogoTasteBuddy").mouseover(function(){
		$(".anitabPhoneTasteBuddy").stop().animate({top:'-13px'},{queue:false, duration:600, easing: 'easeOutCubic'})
	});


	$(".anitabPhoneDogitat").mouseover(function(){
		$(this).stop().animate({top:'-13px'},{queue:false, duration:600, easing: 'easeOutCubic'})
	});
	
	$(".anitabLogoDogitat").mouseover(function(){
		$(".anitabPhoneDogitat").stop().animate({top:'-13px'},{queue:false, duration:600, easing: 'easeOutCubic'})
	});




//When mouse is removed
	$(".anitabPhoneSurc").mouseout(function(){
		$(this).stop().animate({top:'0px'},{queue:false, duration:600, easing: 'easeInCubic'})
	});
	
	$(".anitabLogoSurc").mouseout(function(){
		$(".anitabPhoneSurc").stop().animate({top:'0px'},{queue:false, duration:600, easing: 'easeInCubic'})
	});


	$(".anitabPhoneShopCode").mouseout(function(){
		$(this).stop().animate({top:'0px'},{queue:false, duration:600, easing: 'easeInCubic'})
	});
	
	$(".anitabLogoShopCode").mouseout(function(){
		$(".anitabPhoneShopCode").stop().animate({top:'0px'},{queue:false, duration:600, easing: 'easeInCubic'})
	});


	$(".anitabPhoneTasteBuddy").mouseout(function(){
		$(this).stop().animate({top:'0px'},{queue:false, duration:600, easing: 'easeInCubic'})
	});
	
	$(".anitabLogoTasteBuddy").mouseout(function(){
		$(".anitabPhoneTasteBuddy").stop().animate({top:'0px'},{queue:false, duration:600, easing: 'easeInCubic'})
	});


	$(".anitabPhoneDogitat").mouseout(function(){
		$(this).stop().animate({top:'0px'},{queue:false, duration:600, easing: 'easeInCubic'})
	});
	
	$(".anitabLogoDogitat").mouseout(function(){
		$(".anitabPhoneDogitat").stop().animate({top:'0px'},{queue:false, duration:600, easing: 'easeInCubic'})
	});

		


});



