/*MENU SCRIPT*/

var img;
  /*preloads images*/
  function preload()
  {
    D = document.getElementById('dir').value;
    if(document.images)
    {
      homeglow = new Image(133, 41); homeglow.src = "images/" + D + "/home_glow.gif";
      homeoff = new Image(133,41); homeoff.src = "images/" + D + "/home.gif";
    
      guestglow = new Image(135, 41); guestglow.src = "images/" + D + "/guestbook_glow.gif";
      guestoff = new Image(135, 41); guestoff.src = "images/" + D + "/guestbook.gif";
    
      optionglow = new Image(135, 41); optionglow.src = "images/" + D + "/option_glow.gif";
      optionoff = new Image(135, 41); optionoff.src = "images/" + D + "/option.gif";
    
      supportglow = new Image(133, 41); supportglow.src = "images/" + D + "/support_glow.gif";
      supportoff = new Image(133, 41); supportoff.src = "images/" + D + "/support.gif";
  }
}
function overImg(img)
{
  if(document.images) document[img].src = eval(img + "glow.src");
}
function outImg(img)
{
  if(document.images) document[img].src = eval(img + "off.src");
}

function right_panel_open(url_name)
{
  document.getElementById('rightCell').innerHTML = "<iframe src='" + url_name + "' width='250px' align='_top' height='465' frameborder='0' scrolling='no' id='rightFrame' bgcolor='black'>";
}
  
  
