// On state for the top navigation images
if (document.images) {
theshowon = new Image();
theshowon.src = "images/theshow.gif";   
nominationson = new Image();
nominationson.src = "images/nominations.gif";  
resultson = new Image();
resultson.src = "images/results.gif";
voteon = new Image();
voteon.src = "images/vote.gif";  

// On state for the left navigation images 
sporton = new Image();
sporton.src = "images/index/index1.gif";
filmson = new Image();
filmson.src = "images/index/index2.gif";
kidstvon = new Image();
kidstvon.src = "images/index/index3.gif";
no1singleson = new Image();
no1singleson.src = "images/index/index4.gif";
tvadson = new Image();
tvadson.src = "images/index/index5.gif";
tvcharacterson = new Image();
tvcharacterson.src = "images/index/index6.gif";
worldcupon = new Image();
worldcupon.src = "images/index/index7.gif";
moviestarson = new Image();
moviestarson.src = "images/index/index8.gif";
tvtreatson = new Image();
tvtreatson.src = "images/index/index9.gif";
britonson = new Image();
britonson.src = "images/index/index10.gif";
scaryon = new Image();
scaryon.src = "images/index/index11.gif";

// Off State for the left navigation images
sportoff = new Image();
sportoff.src = "images/index/index1_over.gif";
filmsoff = new Image();
filmsoff.src = "images/index/index2_over.gif";
kidstvoff = new Image();
kidstvoff.src = "images/index/index3_over.gif";
no1singlesoff = new Image();
no1singlesoff.src = "images/index/index4_over.gif";
tvadsoff = new Image();
tvadsoff.src = "images/index/index5_over.gif";
tvcharactersoff = new Image();
tvcharactersoff.src = "images/index/index6_over.gif";
worldcupoff = new Image();
worldcupoff.src = "images/index/index7_over.gif";
moviestarsoff = new Image();
moviestarsoff.src = "images/index/index8_over.gif";
tvtreatsoff = new Image();
tvtreatsoff.src = "images/index/index9_over.gif";
britonsoff = new Image();
britonsoff.src = "images/index/index10_over.gif";
scaryoff = new Image();
scaryoff.src = "images/index/index11_over.gif";


// Off state for the top navigation images
theshowoff = new Image();
theshowoff.src = "images/theshow_over.gif";  
nominationsoff = new Image();
nominationsoff.src = "images/nominations_over.gif";  
resultsoff = new Image();
resultsoff.src = "images/results_over.gif"; 
voteoff = new Image();
voteoff.src = "images/vote_over.gif";  

} 
 
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");        
		}
}