$(function (){

	$(".WEB_CONTE_producto").filter(function(e){
		$(this).bind("click",function(){
			elegirProducto(e)
		})										 
	})
	
	$(".WEB_CONTE_botonVolver").filter(function(){
		$(this).bind("click",function(){
			esconderProducto();						  
		})											
	})
	
	$('div.WEB_CONTE_producto').bind("mouseover",imagenEncima).bind("mouseout",imagenFuera)

}); 

function esconderProducto(){
	$(".WEB_CONTE_galeriaProducto").fadeIn("slow"); 
	$(".WEB_CONTE_detalleProducto").hide();
}

function elegirProducto(x){
	$(".WEB_CONTE_galeriaProducto").hide();
	$(".WEB_CONTE_detalleProducto").hide().andSelf().eq(x).fadeIn("slow"); 
}

function imagenEncima(){
		$(this).css({"border-color":"#b12401"})
	}
	
	function imagenFuera(){
		$(this).css({"border-color":"#FCB03F"})
	}
