$(function(){
	$(".alpha a img").mouseover(function(){
		$(this).animate({ opacity: 0.7 }, 300, "easeOutCubic");
	});
	$(".alpha a img").mouseout(function(){
		$(this).animate({ opacity: 1 }, 350, "easeOutCubic");
	});
	$("img.alpha").mouseover(function(){
		$(this).animate({ opacity: 0.7 }, 300, "easeOutCubic");
	});
	$("img.alpha").mouseout(function(){
		$(this).animate({ opacity: 1 }, 350, "easeOutCubic");
	});
});
