// JavaScript Document

function roll(partie){
	id="#img_"+partie;
	$(id).mouseover(function(){
		$("#lecochon").attr({ 
          src: j_basepath  + "design/front/images/design/cochon/lecochon_"+partie+"_"+iLangueId+".gif",
          title: "",
          alt: ""
        });
    }).mouseout(function(){
	 $("#lecochon").attr({ 
          src: img_base
        });
    });	
}

function selectZoneCochonByNom(zMenu) {
	switch	(zMenu) {
		case 'carcasse':
			img_base = j_basepath  + "design/front/images/design/cochon/lecochon_carcasse_"+iLangueId+".gif";
			break;
		case 'epaule':
			img_base = j_basepath  + "design/front/images/design/cochon/lecochon_epaule_"+iLangueId+".gif";
			break;
		case 'longe':
			img_base = j_basepath  + "design/front/images/design/cochon/lecochon_longe_"+iLangueId+".gif";
			break;
		case 'jambon':
			img_base = j_basepath  + "design/front/images/design/cochon/lecochon_jambon_"+iLangueId+".gif";
			break;
		case 'poitrine':
			img_base = j_basepath  + "design/front/images/design/cochon/lecochon_poitrine_"+iLangueId+".gif";
			break;
		case 'quartier':
			img_base = j_basepath  + "design/front/images/design/cochon/lecochon_quartier_"+iLangueId+".gif";
			break;
		default:
			img_base = $("#lecochon").attr("src");	
			break;
	}

	$("#lecochon").attr("src", img_base);
}

$(window).load(function () {
	//img_base=$("#lecochon").attr("src");	

	if (iMenuId != '' && iMenuId != 'neutre')	{
		img_base = j_basepath  + "design/front/images/design/cochon/lecochon_"+iMenuId+"_"+iLangueId+".gif";
	} else {
		img_base = $("#lecochon").attr("src");	
	}

	$("#lecochon").attr("src", img_base);

	roll("jambon");
	roll("longe");
	roll("epaule");
	roll("poitrine");
	roll("quartier");
	roll("carcasse");

});
