$(document).ready(function(){
	/*
	$('#tamaniocompleto').hover(function(){	var altura = $("#informacion").height(); $("#informacion", this).stop().animate({top:220-altura+'px'},{queue:false,duration:220});},
								function() { var altura2 = $("#informacion h3").height(); $("#informacion", this).stop().animate({top:205-altura2+'px'},{queue:false,duration:200});});
	$('#miniaturas img').hover(function(){$(this).stop().animate({opacity:'.95'},{queue:false,duration:220});}, 
								function() {$(this).stop().animate({opacity:'.65'},{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','220px');
	var imagen = $(this).find('img').attr('src').split('_tb4.jpg');
	$("#imagen img").css('opacity',0).attr('src',imagen[0]+'.jpg').animate({opacity:1},620);
	$("#imagen a").attr('rel',$(this).attr('rel'));
	$("#informacion h3").html($(this).find('img').attr('title'));
	$("#informacion p").html($(this).find('img').attr('alt'));
	var altura2 = $("#informacion h3").height();
	//$("#informacion").animate({top:205-altura2+'px'}, 450);
	$("#informacion").css({top:205-altura2+'px'});
	return false;
	});
	var altura2 = $("#informacion h3").height();
	$("#informacion").css({top:205-altura2+'px'});
});