if (document.images) {
img1on = new Image();           
img1on.src = "media/index/profile_en_on.jpg";  
img2on = new Image(); 
img2on.src = "media/index/collaboration_en_on.jpg";  
img5on = new Image();           
img5on.src = "media/index/iform_en_on.jpg";  

img1off = new Image();          
img1off.src = "media/index/profile_en.jpg";  
img2off = new Image();
img2off.src = "media/index/collaboration_en.jpg";  
img5off = new Image();          
img5off.src = "media/index/iform_en.jpg";  
}

function imgOn(imgName)
{
        if (document.images)
        {
            document[imgName].src = eval(imgName + "on.src");
        }
}

function imgOff(imgName)
{
        if (document.images)
        {
            document[imgName].src = eval(imgName + "off.src");
        }
}