// base
function rollOverOrg(ImgNme)
{
        obj=document.images[ImgNme];
        obj.src=(obj.src.lastIndexOf('_on')!=-1)? obj.src.replace(/_on/gi,"_off"):obj.src.replace(/_off/gi,"_on");
}

// layers
function rollOver(ImgNme)
{
        obj=(document.images)? document.images[ImgNme]:0; ClicNme=(document.clicImg)? document.clicImg.name:""; 
        if (!obj && document.layers) {
                for (i=0; i<document.layers.length; i++) { ObjLyr=document.layers[i].document;
                        if (ObjLyr.images && ObjLyr.images[ImgNme]) obj=ObjLyr.images[ImgNme];}}                
        if (ClicNme!=ImgNme) obj.src=(obj.src.lastIndexOf('_on')!=-1)? obj.src.replace(/_on/gi,"_off"):obj.src.replace(/_off/gi,"_on");
        document.OnImg=obj;
}

// clic
function Clic(ImgNme)
{
        obj=(document.images)? document.images[ImgNme]:0; ClicNme=(document.clicImg)? document.clicImg.name:""; 
        if (!obj && document.layers) {
                for (i=0; i<document.layers.length; i++) { ObjLyr=document.layers[i].document;
                        if (ObjLyr.images && ObjLyr.images[ImgNme]) obj=ObjLyr.images[ImgNme];}}        
        if (document.clicImg) document.clicImg.src=document.clicImg.src.replace(/_on/gi,"_off");
        obj.src=obj.src.replace(/_off/gi,"_on");
        document.clicImg=obj;
}

// Display option d'achat jamon
function DisplayOption(Obj){
		document.getElementById(Obj).style.display = 'block';
		return false;
}

function HideOption(Obj){
		document.getElementById(Obj).style.display = 'none';
		return false;
}

// Display option d'achat jamon
function DisplayAutreAress(Obj){
	lequel = document.getElementById(Obj).style.display;
	// alert (lequel);
	if (document.getElementById(Obj).style.display == 'block')
	{
		document.getElementById(Obj).style.display = 'none';
	}
	else
	{
		document.getElementById(Obj).style.display = 'block';
	}
}

// Display MENU
function DisplayMenu(Obj){
	lequel = document.getElementById(Obj).style.display;
	// alert (lequel);
	if (document.getElementById(Obj).style.display == 'inline')
	{
		document.getElementById(Obj).style.display = 'none';
	}
	else
	{
		document.getElementById(Obj).style.display = 'inline';
	}
}


// Script pour ajouter au favoris
var urlAddress = "http://www.ocusPorcus.com";
var pageName = "Produits iberiques chez vous comme par magie";
function addToFavorites(anchor)
{
	if (window.external)
	{
		window.external.AddFavorite(anchor.getAttribute('href'), anchor.getAttribute('title'));
	}
}



