var menuImages = new Array("home", "my360", "forums", "coupons", "news", "photos", "contact");
for(var i=0;i<menuImages.length;i++) {
	var img = new Image();
	img.src = "/images/menus/" + menuImages[i] + "_on.gif";
}
var menu = document.getElementById("menu");
var imgs = menu.getElementsByTagName("img");
for(var i=0;i<imgs.length;i++) {
	var img = imgs[i];
	img.onmouseover = over;
	img.onmouseout = out;
}

function over() {
	this.src = this.src.replace(/_off\./, '_on\.');
}
function out() {
	this.src = this.src.replace(/_on\./, '_off\.');
}

function popwin(win, label) {
	window.name='mainwin';
	window.open(win, label, 'status=no,menubar=no,height=275,width=447,directories=no,location=no,toolbar=no');
}