//<![CDATA[
/******************************** VERSION CONTROL ******************************** 
* $URL: https://jessica/svn/inflectowebsite/trunk/Website/_js/common.js $ 
* $Rev: 2 $ 
* $Date: 2008-10-15 12:00:48 +0100 (Wed, 15 Oct 2008) $
* $Author: A.Ross.Mason $ 
* 
* CHANGE HISTORY 
* 2008-04-14   -   Created by Ross 
*
*********************************************************************************
*/
function el(id)
{
    return document.getElementById(id);
}

function SwapImage(imageId, newImageSrc)
{
    var img = el(imageId);
    var oldImageSrc = img.src
    img.src = newImageSrc 
    img.onmouseout = function() {el(imageId).src=oldImageSrc;}
}

function PreLoadImages(images)
{
    imageSrcArr = images.split('|');
    imageArr = new Array();

    var i = 0; 
    
    for (var imgSrc in imageSrcArr)
    {
        imageArr[i] = new Image(imgSrc)    
        i ++;
    }
}

function uncodeEmail()
{
    
    for (var i=0; i < document.anchors.length; i++)
    {
        document.anchors[i].href = document.anchors[i].href.replace('(xxxatxxx)','@');
        document.anchors[i].innerHTML = document.anchors[i].innerHTML.replace('(xxxatxxx)','@');
    }
}


//]]>