/* Banner Switcher*/
function bannerSwitcher()
{
  setTimeout("showBanner()",10000);
}

function showBanner()
{
  var site = document.getElementById('bname').value;
  if(site == "thesacrilege.com")
  {
    document.getElementById('thesacrilege.com').style.display='none';
    document.getElementById('lezbegirlfriend.com').style.display='';
    document.getElementById('dudeyourmomishot.com').style.display='none';
    document.getElementById('bname').value = "lezbegirlfriend.com";
  }
  else if(site == "lezbegirlfriend.com")
  {
    document.getElementById('thesacrilege.com').style.display='none';
    document.getElementById('lezbegirlfriend.com').style.display='none';
    document.getElementById('dudeyourmomishot.com').style.display='';
    document.getElementById('bname').value = "dudeyourmomishot.com";
  }
  else
  {
    document.getElementById('thesacrilege.com').style.display='';
    document.getElementById('lezbegirlfriend.com').style.display='none';
    document.getElementById('dudeyourmomishot.com').style.display='none';
    document.getElementById('bname').value = "thesacrilege.com";
  }
  bannerSwitcher();
}
