function swapImage (id) {
	$$('.product-image').setStyle('display', 'none');
	$(id).setStyle('display', 'block');
}
function setContentHeight () {
		var x = document.getElementById("sidemenu");
		var y = document.getElementById("content");
		
		if ((x.offsetHeight+65) < y.offsetHeight) {
			x.style.height = y.offsetHeight+'px';
		}
		if ((x.offsetHeight+65) > y.offsetHeight) {
			//y.style.height = (x.offsetHeight+65)+'px';
			$('content').setStyle('min-height', (x.offsetHeight+65)+'px');
		}
		
		//alert(x.offsetHeight+" "+y.offsetHeight);
		//alert(Browser.Engine.name);
}

window.onload = setContentHeight;
