
function unSwitchImg(imgId){
    document.getElementById('imgHome').className='curSlide slide';
    document.getElementById('img' + imgId).className='hidden';
    
}

function switchImg(imgId){

    //document.getElementById('thumb' + currentId).className='thumb';
    //document.getElementById('thumb' + imgId).className='thumb curThumb';

    document.getElementById('imgHome').className='hidden';
    document.getElementById('img' + imgId).className='curSlide slide';
    
    currentId = imgId;
    
    return false;
}
