if (document.images) {
	section01off = new Image (0,0);
	section02off = new Image (0,0);
	section03off = new Image (0,0);
	section04off = new Image (0,0);
	section05off = new Image (0,0);
	section06off = new Image (0,0);
	menoff = new Image (0,0);
	brandsoff = new Image (0,0);
	
	section01on = new Image (0,0);
	section02on = new Image (0,0);
	section03on = new Image (0,0);
	section04on = new Image (0,0);
	section05on = new Image (0,0);
	section06on = new Image (0,0);
	menon = new Image (0,0);
	brandson = new Image (0,0);

	section01off.src = "images/new_arrivals_off.gif";
	section02off.src = "images/on_sale_off.gif";
	section03off.src = "images/gift_certificates_off.gif";
	section04off.src = "images/tell_friend_off.gif";
	section05off.src = "images/view_cart_off.gif";
	section06off.src = "images/currency_off.gif";
	menoff.src = "images/men_off.gif";
	brandsoff.src = "images/brands_off.gif";

	section01on.src = "images/new_arrivals_on.gif";
	section02on.src = "images/on_sale_on.gif";
	section03on.src = "images/gift_certificates_on.gif";
	section04on.src = "images/tell_friend_on.gif";
	section05on.src = "images/view_cart_on.gif";
	section06on.src = "images/currency_on.gif";
	menon.src = "images/men_on.gif";
	brandson.src = "images/brands_on.gif";
	
}

function act(imgName) {

	if (document.images) {
		document[imgName].src = eval(imgName + 'on.src');
	}
   
}

function inact(imgName) {

	if (document.images) {
		document[imgName].src = eval(imgName + 'off.src');
	}
   
}

function openpage(pagename, dimensions) {

	newWindow = window.open(pagename, "", dimensions);

}

function showMenu(object) {
	document.getElementById(object).style.visibility = 'visible';
}

function hideMenu(object) {
	document.getElementById(object).style.visibility = 'hidden';
}

