$(document).ready(function(){ 

	$(".alphabtn,.alphabtn img").hover(function(){
		//$(this).fadeTo("fast", 0.5);
		$(this).stop();
		$(this).animate( { opacity:0.7 }, 500 , "easeOutCubic");
	},function(){
		//$(this).fadeTo("fast", 1.0);
		$(this).stop();
		$(this).animate( { opacity:1 }, 500 , "easeOutCubic");
	});
	
	

});

