// JavaScript Document
function page_onload() {
	if (!document.getElementsByTagName) return;
	/*var atags = document.getElementById('contents').getElementsByTagName('a');
	for (var i = 0; i < atags.length; i++) {
		atags[i].onmouseover = function() {
			tableclothPreview(this);
		}
	}*/
}
function tableclothPreview(obj) {
	document.getElementById('linen_preview_image').src="/linen_image/preview/" + obj.id + ".jpg";
}
