jQuery(function(){
 
 /*
  var text_menu_inicial = jQuery("#text-menu span").html();
  jQuery("#menu ul li a").hover(function(){
    jQuery("#text-menu span").html(jQuery(this).attr("title"));
	jQuery("#text-menu span").show();
  }, function(){
    jQuery("#text-menu span").html(text_menu_inicial);
	jQuery("#text-menu span").hide();
  });*/
  
  
  jQuery(".producte-home").hover(function(){
    jQuery(".producte-magenta-div").hide();
    jQuery(".producte-magenta-div",this).show(200);
  }, function(){
    jQuery(".producte-magenta-div",this).hide(200);
  });
  
  $(".img56, .img86").click(function(){
	var id=$(this).attr("id").split("-")[1];
	var actiu=$(".img290").attr("id").split("-")[1];
	
	var img = $(".img290").attr("src");
	img = img.replace("-"+actiu+"-290.jpg","-"+id+"-290.jpg");
	
	
	$(".img290").attr("id","img290-"+id)
	$(".img290").attr("src",img);
	
	$(".img56, .img86").removeClass("seleccionada");
	$(this).addClass("seleccionada");
  });
  
});
