if (document.images) {

    // Preload navigation rollovers:

    home_on								= new Image();
    home_on.src						= "/images/nav/home_on.gif";
    home_off							= new Image();
    home_off.src						= "/images/nav/home_off.gif";

    email_on							= new Image();
    email_on.src						= "/images/nav/email_on.gif";
    email_off							= new Image();
    email_off.src						= "/images/nav/email_off.gif";

    online_retailers_on				= new Image();
    online_retailers_on.src		= "/images/nav/online_retailers_on.gif";
    online_retailers_off			= new Image();
    online_retailers_off.src		= "/images/nav/online_retailers_off.gif";
    
    womens_on                    = new Image();
    womens_on.src                = "/images/nav/womens_on.gif";
    womens_off                   = new Image();
    womens_off.src               = "/images/nav/womens_off.gif";
    
    mens_on								= new Image();
    mens_on.src						= "/images/nav/mens_on.gif";
    mens_off							= new Image();
    mens_off.src						= "/images/nav/mens_off.gif";
    
    locations_on                 = new Image();
    locations_on.src             = "/images/nav/locations_on.gif";
    locations_off                = new Image();
    locations_off.src            = "/images/nav/locations_off.gif";
    
};

// State change methods:
function state_on(nom)  {
	if (document.images) 
	{ 
		document[nom].src = eval(nom + "_on.src");   
	}; 
	return; 
};

function state_off(nom) { 
	if (document.images) 
	{ document[nom].src = eval(nom + "_off.src");    }; 
	return; 
};

//pop up web page window script
function pop_up_window (url, windowName, winHeight, winWidth) {

	features = "height=" + winHeight + ",width=" + winWidth + ",top=200,left=150";

	//window.alert (url + ", " + windowName + ", " + features);
	window.open(url,null,features,true);
	return;
};

//pop up web page window script
function open_window (url) {

	//window.alert (url + ", " + windowName + ", " + features);
	window.open(url,null,null,true);
	return;
};