$(document).ready( function() {
	$('#proxy').click( function() {
		if (!$('#cesta').is(':visible')) {
			$("#cesta").show("blind", {}, 1000);
		}
	});
	
	$('#cerrar').click( function() {
		if ($('#cesta').is(':visible')) {
			$("#cesta").hide("blind", {}, 1000);
		}
		return false;
	});
	
	$('.marcado:first').children('img:first').fadeTo("fast", 0.33);
	
	$('.elige-foto').each(function(i) {
		$(this).click(function(){
			$('.elige-foto').each(function(i){
				$(this).children('img:first').fadeTo("fast", 1.0);
				$(this).removeClass('marcado');	
			});	
			$("#producto-seleccionado").attr('src', $(this).children('img:first').attr('rel'));
			$(this).children('img:first').fadeTo("normal", 0.33);
			$(this).addClass('marcado');
			return false;
		});
	});
	
});