$(document).ready(function(){
	
	$('#tamaniocompleto').hover(function(){	var altura = $("#informacion").height(); $("#informacion", this).stop().animate({top:300-altura+'px'},{queue:false,duration:220});},
								function() { var altura2 = $("#informacion h3").height(); $("#informacion", this).stop().animate({top:280-altura2+'px'},{queue:false,duration:200});});
	$('#miniaturas img').hover(function(){$(this).stop().animate({opacity:'.95'},{queue:false,duration:220});}, 
								function() {$(this).stop().animate({opacity:'.45'},{queue:false,duration:200});});		
	
	$('#imagen a').click(function(){prepareLink($(this).attr('rel'),'/Destacados'+$(this).attr('rel'));return false;});
	$('#informacion').click(function(){prepareLink($('#imagen a').attr('rel'),'/Destacados'+$('#imagen a').attr('rel'));return false;});

	$('#miniaturas a').click(function(){
	$("#informacion").css('top','300px');
	$("#imagen img").css('opacity',0).attr('src',$(this).attr('rel')).animate({opacity:1},620);
	$("#imagen a").attr('href',$(this).attr('href'));
	$("#informacion h3").html($(this).find('img').attr('title'));
	$("#informacion p").html($(this).find('img').attr('alt'));
	var altura2 = $("#informacion h3").height();
	$("#informacion").animate({top:280-altura2+'px'}, 450);
	return false;
	});
	var altura2 = $("#informacion h3").height();
	$("#informacion").animate({top:280-altura2+'px'});
});