$(document).ready(function(){

	$('.about_copy').css('opacity','0').show();

	$('#page-enter .content>div').hover(function(){
	
		$(this).find('.about_copy').stop().animate({'opacity':0.99},'fast');
	
	},function(){
	
		$(this).find('.about_copy').stop().animate({'opacity':0},'slow');

	});

});


