// Refinding
//-----------------------------------------------
var Refinding = {
	init: function () {
		/*
		if (Flash.hasVersion (6)) {
			tag = new Flashtag(6, '/flash/header.swf', 750, 170);
			tag.addProperty('wmode', 'transparent');
         $('mast').innerHTML = tag.render();
		}
		*/
		if($('detail')) Refinding.detail();
	},
	
	detail: function () {
	   if ($('detail1')) {
	      $('detail1').onclick = function () {
	         hash = this.hash;
	         img = '<img src="/images/products/'+hash.slice(1,0)+'" />';
	         $('detail_photo').innerHTML = img;
	      }
	   }
	   if ($('detail2')) {
	      $('detail2').onclick = function () {
	         hash = this.hash;
	         img = '<img src="/images/products/'+hash.slice(1,0)+'" />';
	         $('detail_photo').innerHTML = img;
	      }
	   }
	   if ($('detail3')) {
	      $('detail3').onclick = function () {
	         hash = this.hash;
	         img = '<img src="/images/products/'+hash.slice(1,0)+'" />';
	         $('detail_photo').innerHTML = img;
	      }
	   }
	}
}


// Window.Onload
//-----------------------------------------------
window.onload = function () {
	if($('mast')) Refinding.init();
}