if (document.images) {

	

// ## ROLLOVER IMAGES ##

	

	//NAV

	abouton = new Image();

	abouton.src = images_dir+"/nav_about_over.gif";

	accounton = new Image();

	accounton.src = images_dir+"/nav_account_over.gif";

	clubson = new Image();

	clubson.src = images_dir+"/nav_clubs_over.gif";

	clothingon = new Image();

	clothingon.src = images_dir+"/nav_clothing_over.gif";

	bagstrolleyson = new Image();

	bagstrolleyson.src = images_dir+"/nav_bags-trolleys_over.gif";

	collectibleson = new Image();

	collectibleson.src = images_dir+"/nav_collectibles_over.gif";

	miscellaneouson = new Image();

	miscellaneouson.src = images_dir+"/nav_miscellaneous_over.gif";

	helpon = new Image();

	helpon.src = images_dir+"/nav_help_over.gif";

	Funnieson = new Image();

	Funnieson.src = images_dir+"/nav_login_over.gif";



// ## ROLLOUT IMAGE ##

        

        //NAV

	aboutoff = new Image();

	aboutoff.src = images_dir+"/nav_about_out.gif";

	accountoff = new Image();

	accountoff.src = images_dir+"/nav_account_out.gif";

	clubsoff = new Image();

	clubsoff.src = images_dir+"/nav_clubs_out.gif";

	clothingoff = new Image();

	clothingoff.src = images_dir+"/nav_clothing_out.gif";

	bagstrolleysoff = new Image();

	bagstrolleysoff.src = images_dir+"/nav_bags-trolleys_out.gif";

	collectiblesoff = new Image();

	collectiblesoff.src = images_dir+"/nav_collectibles_out.gif";

	miscellaneousoff = new Image();

	miscellaneousoff.src = images_dir+"/nav_miscellaneous_out.gif";

	helpoff = new Image();

	helpoff.src = images_dir+"/nav_help_out.gif";

	Funniesoff = new Image();

	Funniesoff.src = images_dir+"/nav_login_out.gif";



}



// Function to 'activate' images.

function imgOn(imgName) {

				 if (document.images) {

				 document[imgName].src = eval(imgName + "on.src");   

				 }

}



// Function to 'deactivate' images.

function imgOff(imgName) {

        if (document.images) {

        			document[imgName].src = eval(imgName + "off.src");

				}

}