$(document).ready(function(){
	/*
	$(".main_ultimas_fotos img").fadeTo(0.000001, 0.8);
	$(".main_ultimas_fotos img").mouseover(function(){
		$(this).stop().fadeTo(1, 1)
	}).mouseout(function(){
		$(this).stop().fadeTo(1, 0.8)
	});
	*/
	$(".main_photo img, .main_photoR img").fadeTo(0.0000001, 0.8);
	$(".main_photo img, .main_photoR img").mouseover(function(){
		$(this).stop().fadeTo(1, 1)
	}).mouseout(function(){
		$(this).stop().fadeTo(1, 0.8)
	});


	$width = $(".main_ultimas_fotos").find('img').width();
	$height = $(".main_ultimas_fotos").find('img').height();
	$(".main_ultimas_fotos").hover(function() {
		$(this).css({'z-index' : '10'});
		$width_new = $width * 2.2
		$height_new = $height * 2.2
		$marginTop = $height_new * 0.5
		$marginLeft = $width_new * 0.5
		$(this).find('img').stop()
			.animate({
				marginTop: '-' + $marginTop + 'px', 
				marginLeft: '-' + $marginLeft + 'px', 
				top: '50%', 
				left: '50%', 
				width:  $width_new + 'px', 
				height: $height_new + 'px'
			}, 500);
		
		}, 
	function() {
		$(this).css({'z-index' : '0'});
		$(this).find('img').stop()
			.animate({
				marginTop: '0', 
				marginLeft: '0',
				top: '0', 
				left: '0', 
				width: $width + 'px', 
				height: $height + 'px'
			}, 100);
	});	
	
});


