// JavaScript Document
if(window.screen.width)
 {if(window.screen.width > 850)
  {
   with(Math){leftColumnSpace=window.screen.width/2-265};
   with(Math){leftColumnWidth=0.75*leftColumnSpace};
   with(Math){leftColumnLeft=0.25*leftColumnSpace-5};
   with(Math){fixedLeft=window.screen.width/2-245};
   with(Math){fixedLeftMinusNotIe6=fixedLeft-8};
   with(Math){fixedLeftMinusIe6=fixedLeft-6};
   with(Math){mainColumnLeft=fixedLeft-10};
   with(Math){rightColumn=0.75*window.screen.width+61};
   document.write('<style type="text/css">div.leftcolumn{width:'+leftColumnWidth+'px; left:'+leftColumnLeft+'px}</style>');
   document.write('<style type="text/css">#stayput,#fixedattop{left:'+fixedLeft+'px}</style>');
   document.write('<style type="text/css">div.main{left:'+fixedLeftMinusIe6+'px}</style>');
   document.write('<style type="text/css">body > div.main{left:'+fixedLeftMinusNotIe6+'px}</style>');
   document.write('<style type="text/css">div.rightcolumn{left:'+rightColumn+'px}</style>');
  }
 }
function eyeballshift(direction)
 {
  shiftright=document.getElementById("logoright").style;
  shiftleft=document.getElementById("logoleft").style;
  if(direction==1)
   {
    shiftright.zIndex="2";
    shiftleft.zIndex="-1";
   }
   if(direction==0)
   {
    shiftright.zIndex="-1";
    shiftleft.zIndex="2";
   }
 }
