var preload1=new Image();
preload1.src="images/menuover_01_02.gif";

function mkcontent() /*v1.0 dethstarz function*/
       {
         var intwindowwidth = document.body.clientWidth;
         var intnewxcoor = ((intwindowwidth - 828) / 2);
      if (intnewxcoor < 0)
    {
       intnewxcoor = 0;
    }
  var intnewcontentleft = intnewxcoor + "px";
  document.getElementById('wrapper').style.left = intnewcontentleft ;
}

window.onresize = mkcontent;

function buttonOver(buttonId, stringx)
{
document.getElementById(buttonId).style.backgroundImage =  stringx;
}

function buttonOut(buttonId, stringx)
{
document.getElementById(buttonId).style.backgroundImage = stringx;
}

function changeLocation(addressx)
{
   window.location = addressx;
} 
