var root = "/";
var culture = "it-IT";

var imgFactoryBigSrc = root + "Images/" + culture + "/homeFactoryBig.gif";
var imgProductsBigSrc = root + "Images/" + culture + "/homeProductsBig.gif";
var imgESolutionsBigSrc = root + "Images/" + culture + "/homeESolutionsBig.gif";
var imgFactorySrc = root + "Images/" + culture + "/homeFactory.gif";
var imgProductsSrc = root + "Images/" + culture + "/homeProducts.gif";
var imgESolutionsSrc = root + "Images/" + culture + "/homeESolutions.gif";

function setCulture(culture)
{
    imgFactoryBigSrc = root + "Images/" + culture + "/homeFactoryBig.gif";
    imgProductsBigSrc = root + "Images/" + culture + "/homeProductsBig.gif";
    imgESolutionsBigSrc = root + "Images/" + culture + "/homeESolutionsBig.gif";
    imgFactorySrc = root + "Images/" + culture + "/homeFactory.gif";
    imgProductsSrc = root + "Images/" + culture + "/homeProducts.gif";
    imgESolutionsSrc = root + "Images/" + culture + "/homeESolutions.gif";
}

function changeImg(id)
{
    if (id == "imgFactory") document.getElementById("imgFactory").src = imgFactoryBigSrc;
        else document.getElementById("imgFactory").src = imgFactorySrc;
    
    if (id == "imgProducts") document.getElementById("imgProducts").src = imgProductsBigSrc;
        else document.getElementById("imgProducts").src = imgProductsSrc;
    
    if (id == "imgESolutions") document.getElementById("imgESolutions").src = imgESolutionsBigSrc;
        else document.getElementById("imgESolutions").src = imgESolutionsSrc;
}