// On state for the top navigation images
if (document.images) {
Showon = new Image();
Showon.src = "images/the-show.gif";  
Vidon = new Image();
Vidon.src = "images/videoclips.gif";  
nominationson = new Image();
nominationson.src = "images/nominations.gif";  
sporting_storieson = new Image();
sporting_storieson.src = "images/sportingstories.gif";  
triviaon = new Image();
triviaon.src = "images/triviaquiz.gif";  
voteon = new Image();
voteon.src = "images/vote.gif";  
resultson = new Image();
resultson.src = "images/results.gif";

// Off State for the left navigation images
sportoff = new Image();
sportoff.src = "images/index/index1.gif";
filmsoff = new Image();
filmsoff.src = "images/index/index2.gif";
kidstvoff = new Image();
kidstvoff.src = "images/index/index3.gif";
no1singlesoff = new Image();
no1singlesoff.src = "images/index/index4.gif";
tvadsoff = new Image();
tvadsoff.src = "images/index/index5.gif";
tvcharactersoff = new Image();
tvcharactersoff.src = "images/index/index6.gif";

//sportingon = new Image();
//sportingon.src = "images/nav_sporting_moments.gif";

// Off state for the top navigation images
Showoff = new Image();
Showoff.src = "images/theshow_over.gif";  
Vidoff = new Image();
Vidoff.src = "images/videoclips_over.gif";  
nominationsoff = new Image();
nominationsoff.src = "images/nominations_over.gif";  
sporting_storiesoff = new Image();
sporting_storiesoff.src = "images/sportingstories_over.gif";  
triviaoff = new Image();
triviaoff.src = "images/triviaquiz_over.gif";  
voteoff = new Image();
voteoff.src = "images/vote_over.gif";  
resultsoff = new Image();
resultsoff.src = "images/results_over.gif"; 

// Off state for the left navigation images 
sporton = new Image();
sporton.src = "images/index/index1_over.gif";
filmson = new Image();
filmson.src = "images/index/index2_over.gif";
kidstvon = new Image();
kidstvon.src = "images/index/index3_over.gif";
no1singleson = new Image();
no1singleson.src = "images/index/index4_over.gif";
tvadson = new Image();
tvadson.src = "images/index/index5_over.gif";
tvcharacterson = new Image();
tvcharacterson.src = "images/index/index6_over.gif";
//sportingoff = new Image();
//sportingoff.src = "images/nav_sporting_moments_dormant.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");        
		}
}