// JavaScript Document
<!-- 
// ================================================= define and preload images for rollovers
	if (document.images) {
	
	b_Icon_A = new Image
	b_Icon_B = new Image
	b_Icon_C = new Image
	b_Icon_D = new Image
	b_Icon_E = new Image	
	b_Icon_F = new Image
	b_Icon_G = new Image
	b_Icon_H = new Image
	b_Icon_I = new Image
	b_Icon_J = new Image	
	b_Icon_K = new Image	
	b_Icon_L = new Image
	b_Icon_H = new Image
	b_header = new Image

	b_Icon_A.src = path + "tall_glass_of_water.gif"
	b_Icon_B.src = path + "img002.gif"
	b_Icon_C.src = path + "img006.gif"
	b_Icon_D.src = path + "shopping_cart.gif"
	b_Icon_E.src = path + "img008.gif"
	b_Icon_F.src = path + "a_bright_idea.gif"
	b_Icon_G.src = path + "about_mac.gif"
	b_Icon_H.src = path + "img007.gif"
	b_Icon_I.src = path + "img001.gif"
	b_Icon_J.src = path + "email_list1.gif"
	b_Icon_K.src = path + "img009.gif"
	b_Icon_L.src = path + "help2.gif"

	o_Icon_A = new Image
	o_Icon_B = new Image
	o_Icon_C = new Image
	o_Icon_D = new Image
	o_Icon_E = new Image	
	o_Icon_F = new Image
	o_Icon_G = new Image
	o_Icon_H = new Image
	o_Icon_I = new Image
	o_Icon_J = new Image	
	o_Icon_K = new Image	
	o_Icon_L = new Image			
	o_header = new Image

	o_Icon_A.src = path + "mo_tall_glass_of_water.gif"
	o_Icon_B.src = path + "mo_dries_men.gif"
	o_Icon_C.src = path + "mo_engineered_garments.gif"
	o_Icon_D.src = path + "mo_shopping_bag.gif"
	o_Icon_E.src = path + "mo_paul_smith.gif"
	o_Icon_F.src = path + "mo_bright_idea.gif"
	o_Icon_G.src = path + "mo_about_mac.gif"
	o_Icon_H.src = path + "mo_margiela_men.gif"
	o_Icon_I.src = path + "mo_walter_van_beirendonck.gif"
	o_Icon_J.src = path + "mo_email_list.gif"
	o_Icon_K.src = path + "mo_margiela_women.gif"
	o_Icon_L.src = path + "mo_help.gif"
}

//================================================ Randomizer for random logo images
	// The Central Randomizer 1.3 (C) 1997 by Paul Houle (houle@msc.cornell.edu)
	// See:  http://www.msc.cornell.edu/~houle/javascript/randomizer.html

	rnd.today=new Date();
	rnd.seed=rnd.today.getTime();

	function rnd() {
        rnd.seed = (rnd.seed*9301+49297) % 233280;
        return rnd.seed/(233280.0);
	};

	function rand(number) {
        return Math.ceil(rnd()*number);
	};

													//=== end of randomizer routine

// ============================================== Rollover Image change
	function chgImg(imgField,newImg) {
		if (document.images) {
			document[imgField].src= eval(newImg + ".src")
		}
	}

// ============================================== Popup Windows	
	function popOpen(theURL,winName,mWidth, mHeight, mLeft, mTop, mScroll) {
		features = "toolbar=no,width=" +mWidth + ", height=" + mHeight + ", left= " + mLeft + ", top=" + mTop +", scrollbars=" + mScroll;
  		window.open(theURL,winName,features);
	}



//-->
