var neue = {  src: '/sifr/neue.swf'  };

sIFR.activate(neue);

sIFR.replace(neue, {
selector: 'h1.whiteh1'
,wmode: 'transparent'
,thickness: -80
,css: [
  '.sIFR-root { color: #dceaf0;}'
]
});

sIFR.replace(neue, {
selector: '.punt'
,wmode: 'transparent'
,css: [
  '.sIFR-root { color: #3e8fe1; font-weight: bold; font-size: 50px;}'
]
});

sIFR.replace(neue, {
selector: 'h1'
,wmode: 'transparent'
,thickness: -10
,css: [
  '.sIFR-root { color: #3e8fe1; }'
  ,'a { text-decoration: none; }'
  ,'a:link { color: #3e8fe1; }'
  ,'a:hover { color: #000000; }'
]
});  

function show1()
{
  document.getElementById("div1").style.display="block";
  document.getElementById("button1").style.background="#1b1b1b";

  document.getElementById("div2").style.display="none";
  document.getElementById("button2").style.background="#313131";

}

function show2()
{
  document.getElementById("div1").style.display="none";
  document.getElementById("button1").style.background="#313131";

  document.getElementById("div2").style.display="block";
  document.getElementById("button2").style.background="#1b1b1b";

}