$(function(){
	$(".alpha a img").mouseover(function(){
		$(this).animate({ opacity: 0.7 }, 300, "easeOutCubic");
	});
	$(".alpha a img").mouseout(function(){
		$(this).animate({ opacity: 1 }, 350, "easeOutCubic");
	});
	$("li.stay").find('img').each(function(){
		$(this).removeClass("smooth");
		$(this).attr("src", $(this).attr("src").replace("_off", "_on"));
	});
});

