function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}

function switchImg(from,to){
		//swaps pre loaded image objects' src properties (used for rollovers)
    	document[from].src = eval(to + ".src");
}

count = 0;
MyImages = new Array();
	function loadImg(from,to){
		//swaps an image src with a remote url (used to show product images)

    	document[from].src = to;
}
function Next(){
if (count < MyImages.length - 1){
count = count + 1;
document.prodImage.src = MyImages[count].src;

}
else {
count = 0;
document.prodImage.src = MyImages[count].src;
}

}
function Back(){
if (count > 0){
count = count - 1;
document.prodImage.src = MyImages[count].src;

}
else {
count = -1;
document.prodImage.src = MyImages[count].src;
}

}
