$(function(){
		$('#centent-box1 #centent-box2 #logs img').animate({
			"opacity" : 0.8			
		});	
		$('#centent-box1 #centent-box2 #logs img').hover(function(){
			$(this).stop().animate({"opacity" : 1 });
		}, function(){ 
			$(this).stop().animate({"opacity" : .8 });
		});	
				
	});		
