
// ¹è°æÀÌ¹ÌÁö ·Ñ¿À¹ö
   function subtm(that){
	  that.style.backgroundImage ="url(../image/subtm_bg.gif)";
	  that.style.cursor="hand";
	  that.style.color="#333333";
   }
   function subtmOn(that){
	  that.style.backgroundImage ="url(../image/subtm_bgon.gif)";
	  that.style.cursor="hand";
	  that.style.color="#FFFFFF";
   }


// Åä±Û¾×¼Ç
var old_menu = '';
var old_cell = '';
function menuclick(submenu)
{
  if( old_menu != submenu ) {
    if( old_menu !='' ) {
      old_menu.style.display = 'none';
    }
    submenu.style.display = 'block';
    old_menu = submenu;
  } else {
    submenu.style.display = 'none';
    old_menu = '';
  }
}

//ÀüÃ¼ ÆäÀÌÁö Àû¿ë : ¸µÅ©½Ã Á¡¼± ¾ø¾Ö±â
function bluring(){ 
 if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") 
 document.body.focus(); 
} 
document.onfocusin=bluring; 

//»óÅÂÇ¥½ÃÁÙ¿¡ ÁÖ¼Ò¾Èº¸ÀÌ°Ô
function hidestatus(){ 
window.status='' 
return true 
} 

if (document.layers) 
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT) 

document.onmouseover=hidestatus 
document.onmouseout=hidestatus

