// JavaScript Document
/* 20111117 stop Use ??
$(function(){
		   $('div.details_pro + dl ').children('dd').css({"display":"block"});
		   $('.class_pro dt').toggle(
								  function(){$(this).parent('dl').children('dd').show();},function(){$(this).parent('dl').children('dd').hide();}
								  );

		   $('dl.down').hover(
							  function(){
									  $(this).css({"border-left":"1px solid red;"});
									  },function(){								  $(this).css({"border-left":"1px solid #fff;"});});
		   })
*/

	 function showPic(whichpic) {
  var source = whichpic.getAttribute("alt");
  var placeholder = document.getElementById("big");
  placeholder.style.display="inline";
  placeholder.setAttribute("src",source);
  var text =whichpic.getElementsByTagName("span")[0];
  var text=text.getAttribute('alt');
  var description = document.getElementById("description");
  if(description!=null)
  {
  description.style.display="inline";
  description.style.height=placeholder.height;///2011-10-17ΌΣ
  description.innerHTML = text;
  }
// description.innerHTML = "<p>"+text+"</p>";

}  

	 function suchiva(e){
	  var oHover=e.getAttribute('alt')
	  var osource=document.getElementById('banner');
		  osource.setAttribute('src',oHover);

	  }
	 
