$(function() {
  $('#menuBtn01 a').attr('class','current');
  
  $('#newsItemList li').mouseover(function() {
    $(this).css('background-color','#e6e5e5');
    $(this).css('background-image','url(images/news_item_dot2.gif)');
  });
  $('#newsItemList li').mouseout(function() {
    $(this).css('background-color','#fff');
    $(this).css('background-image','url(images/news_item_dot1.gif)');
  });
  
  $('#newproductItemList li').mouseover(function() {
    $(this).css('background-color','#e6e5e5');
  });
  $('#newproductItemList li').mouseout(function() {
    $(this).css('background-color','#fff');
  });
  
  $('#newsTab a').click(function() {
    $('#newsItemList').css('display','block');
    $('#newproductItemList').css('display','none');
    $(this).css('background-position','0 0');
    $('#newproductTab a').css('background-position','-157px -29px');
    $('#newsListBtn').css('display','block');
    $('#newproductListBtn').css('display','none');
  });
  $('#newproductTab a').click(function() {
    $('#newsItemList').css('display','none');
    $('#newproductItemList').css('display','block');
    $('#newsTab a').css('background-position','0 -29px');
    $(this).css('background-position','-157px 0');
    $('#newsListBtn').css('display','none');
    $('#newproductListBtn').css('display','block');
  });
  
  $('.popupBtn01').click(function() {
    w = 690;
    h = 560;
    x = (screen.width - w) / 2;
    y = (screen.height - h) / 2;
    window.open("popupvideo.html", "popupvideo", "width="+w+", height="+h+", top="+y+", left="+x+", screenY="+y+", screenX="+x+"status=no,resizable=no,toolbar=no,scrollbars=no,location=no,menubar=no");
  });
  $('.popupBtn02').click(function() {
    w = 690;
    h = 560;
    x = (screen.width - w) / 2;
    y = (screen.height - h) / 2;
    window.open("popupradio.html", "popupradio", "width="+w+", height="+h+", top="+y+", left="+x+", screenY="+y+", screenX="+x+"status=no,resizable=no,toolbar=no,scrollbars=no,location=no,menubar=no");
  });
  $('.popupBtn03').click(function() {
    w = 690;
    h = 560;
    x = (screen.width - w) / 2;
    y = (screen.height - h) / 2;
    window.open("popupradio101101.html", "popupradio", "width="+w+", height="+h+", top="+y+", left="+x+", screenY="+y+", screenX="+x+"status=no,resizable=no,toolbar=no,scrollbars=no,location=no,menubar=no");
  });
  $('.popupBtn04').click(function() {
    w = 690;
    h = 560;
    x = (screen.width - w) / 2;
    y = (screen.height - h) / 2;
    window.open("popupradio110301.html", "popupradio", "width="+w+", height="+h+", top="+y+", left="+x+", screenY="+y+", screenX="+x+"status=no,resizable=no,toolbar=no,scrollbars=no,location=no,menubar=no");
  });
});

