// Rollover script
var W3CDOM = (document.createElement && document.getElementsByTagName);

var mouseOvers = new Array();
var mouseOuts = new Array();

window.onload = init;

function init(){
	if (!W3CDOM) return;
	var nav = document.getElementById('storeNav');
	var imgs = nav.getElementsByTagName('img');
	for (var i=0;i<imgs.length;i++){
		imgs[i].onmouseover = mouseGoesOver;
		imgs[i].onmouseout = mouseGoesOut;
		var suffix = imgs[i].src.substring(imgs[i].src.lastIndexOf('.'));
		mouseOuts[i] = new Image();
		mouseOuts[i].src = imgs[i].src;
		mouseOvers[i] = new Image();
		mouseOvers[i].src = imgs[i].src.substring(0,imgs[i].src.lastIndexOf('.')) + "_over" + suffix;
		imgs[i].number = i;
		}
	}

function mouseGoesOver(){
	this.src = mouseOvers[this.number].src;
}

function mouseGoesOut(){
	this.src = mouseOuts[this.number].src;
}
	
	
// Head Wear popups
var img_id;
var leftPos;
var topPos;
	
function headwearPop(img_id){
	if (screen){
		leftPos = (screen.width/2) - 245
		topPos = (screen.height/2) - 260
	}
	//popUrl = "/store/headwear/popup.php?id=" + img_id;
	popUrl = "popup.php?id=" + img_id;
	window.open(popUrl, 'LargeImagePop', 'width=470, height=520, toolbar=no, status=no, menubar=no, scrollbars=no, resize=no, left='+leftPos+', top='+topPos);
}
	
	
// Mens Apparel popups
var img_id;
var leftPos;
var topPos;
	
function mensPop(img_id){
	if (screen){
		leftPos = (screen.width/2) - 245
		topPos = (screen.height/2) - 260
	}
	//popUrl = "/store/mens/popup.php?id=" + img_id;
	popUrl = "popup.php?id=" + img_id;
	window.open(popUrl, 'LargeImagePop', 'width=470, height=520, toolbar=no, status=no, menubar=no, scrollbars=no, resize=no, left='+leftPos+', top='+topPos);
}
	
	
// Womens Apparel popups
var img_id;
var leftPos;
var topPos;
	
function womensPop(img_id){
	if (screen){
		leftPos = (screen.width/2) - 245
		topPos = (screen.height/2) - 260
	}
	//popUrl = "/store/womens/popup.php?id=" + img_id;
	popUrl = "popup.php?id=" + img_id;
	window.open(popUrl, 'LargeImagePop', 'width=470, height=520, toolbar=no, status=no, menubar=no, scrollbars=no, resize=no, left='+leftPos+', top='+topPos);
}
	
	
