$(document).ready(function() {

$(".block").animate({ opacity: 0.85 }, 1 ); //Set Opacity	
$(".txt").animate({ opacity: 0.85 }, 1 ); //Set Opacity

$(function(){

$('#one,#two,#three,#four,#five,#six,#seven').hover(
		function() { $(".block", this).stop().animate({bottom: '45'}, 'slow');},
	 	function() { $(".block", this).stop().animate({bottom: '-40'}, 'slow');}  
     );
	 });
	 
});
