/*
 CALL TO CORRECT DIRECTORY
 CALL TO CORRECT DIRECTORY
 CALL TO CORRECT DIRECTORY
 CALL TO CORRECT DIRECTORY
*/

directCall="images/";	



// ROLLOVER CODE BELOW ROLLOVER CODE BELOW ROLLOVER CODE BELOW ROLLOVER CODE BELOW
// ROLLOVER CODE BELOW ROLLOVER CODE BELOW ROLLOVER CODE BELOW ROLLOVER CODE BELOW
// ROLLOVER CODE BELOW ROLLOVER CODE BELOW ROLLOVER CODE BELOW ROLLOVER CODE BELOW

browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);
if (((browserName == "Netscape") && (browserVer >= 3)) || ((browserName == "Microsoft Internet Explorer") && (browserVer >= 4))) {
    version = "ok";}
	
	if (document.images) {
       
	   	football_on = new Image(280,72);		football_on.src = directCall + "home_football_on.gif";     
        football_off = new Image(280,72); 		football_off.src = directCall + "home_football_off.gif";
		
		other_on = new Image(280,72);		other_on.src = directCall + "home_allevent_on.gif";     
        other_off = new Image(280,72); 		other_off.src = directCall + "home_allevent_off.gif";
		
    	semester_on = new Image(280,72);		semester_on.src = directCall + "home_semester_on.gif";     
        semester_off = new Image(280,72); 		semester_off.src = directCall + "home_semester_off.gif";
        
		monthly_on = new Image(280,72);		monthly_on.src = directCall + "home_monthly_on.gif";     
        monthly_off = new Image(280,72); 		monthly_off.src = directCall + "home_monthly_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");
            
        }
}





