// JavaScript Document
function changePicture(piId, newImage){
	var imageBox;
	imageBox = document.getElementById(piId);
	imageBox.src = "images/" + newImage;
}
function changeContent(cID){
	var	content_id = "p-content_" + cID;
	var pContent = document.getElementById(content_id);
	var i, hID, hContent;
	for(i=1;i<14;i++){
		hId	= "p-content_"+ i;
		hContent = document.getElementById(hId);
		hContent.style.display = 'none';
	}	
	pContent.style.display = 'block';
}
function changeCollection(cID, image1, image2){
	changePicture('product-images', image1);
	changePicture('collection_h',image2);
	changeContent(cID);	
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}