// On state for the top navigation images
if (document.images) {
theshowon = new Image();
theshowon.src = "/entertainment/tv/microsites/G/greatest/images/show_on.gif";   
videoon = new Image();
videoon.src = "/entertainment/tv/microsites/G/greatest/images/video_on.gif";  
nominationson = new Image();
nominationson.src = "/entertainment/tv/microsites/G/greatest/images/nominations_on.gif";  
storieson = new Image();
storieson.src = "/entertainment/tv/microsites/G/greatest/images/stories_on.gif";  
triviaon = new Image();
triviaon.src = "/entertainment/tv/microsites/G/greatest/images/trivia_on.gif";  
resultson = new Image();
resultson.src = "/entertainment/tv/microsites/G/greatest/images/results_on.gif";
voteon = new Image();
voteon.src = "/entertainment/tv/microsites/G/greatest/images/vote_on.gif";


// Off state for the top navigation images
theshowoff = new Image();
theshowoff.src = "/entertainment/tv/microsites/G/greatest/images/show_off.gif";  
videooff = new Image();
videooff.src = "/entertainment/tv/microsites/G/greatest/images/video_off.gif";  
nominationsoff = new Image();
nominationsoff.src = "/entertainment/tv/microsites/G/greatest/images/nominations_off.gif";  
storiesoff = new Image();
storiesoff.src = "/entertainment/tv/microsites/G/greatest/images/stories_off.gif";  
triviaoff = new Image();
triviaoff.src = "/entertainment/tv/microsites/G/greatest/images/trivia_off.gif";  
resultsoff = new Image();
resultsoff.src = "/entertainment/tv/microsites/G/greatest/images/results_off.gif"; 
voteoff = new Image();
voteoff.src = "/entertainment/tv/microsites/G/greatest/images/vote_off.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");        
		}
}