
function getTop(){
  var hn;
  if(location.pathname.match('/network/')) {
    hn = 1;
  } else if(location.pathname.match('/product/')) {
    hn = 2;
  } else if(location.pathname.match('/service/')) {
    hn = 3;
  } else if(location.pathname.match('/laboratory/')) {
    hn = 4;
  } else if(location.pathname.match('/management/')) {
    hn = 5;
  } else if(location.pathname.match('/intro/')) {
    hn = 6;
  } else if(location.pathname.match('/contact/')) {
    hn = 7;
  } else {
	hn = '';
  }
  return hn;
}


function top_swf() 
{
  swf_func('gnb','/swf/gnb.swf?domain_name=/swf/&hn=' + getTop(),'980','360');
}

