//here you place the ids of every element you want.
// var ids=new Array('bigpics1','bigpics2','bigpics3','bigpics4','bigpics5','bigpics6','bigpics7');

//var ids=new Array('bigpics1','bigpics2');
 

function switchid_new(sourceArray, index,imgid)
{
  document.all(imgid).src = "http://www.ridolfishirt.com/images/customshirt/" + sourceArray[index];
}


function switchid(id,str,nr){
        hideallids(str,nr);
        showdiv(id);
}



function hideallids(str,nr){
        //loop through the array and hide each element by id
        for (var i=1;i<=nr;i++){
                hidediv(str+i);
        }

}




function hidediv(id) {
        //safe function to hide an element with a specified id
        if (document.getElementById) { // DOM3 = IE5, NS6
                document.getElementById(id).style.display = 'none';
        }
        else {
                if (document.layers) { // Netscape 4
                        document.id.display = 'none';
                }
                else { // IE 4
                        document.all.id.style.display = 'none';
                }
        }
}

function showdiv(id) {
        //safe function to show an element with a specified id

        if (document.getElementById) { // DOM3 = IE5, NS6
                document.getElementById(id).style.display = 'block';
        }
        else {
                if (document.layers) { // Netscape 4
                        document.id.display = 'block';
                }
                else { // IE 4
                        document.all.id.style.display = 'block';
                }
        }
}   


