//Rotate Feature
setTimeout(featureRot,3500);
var n = 1;

function featureRot()
 {
  f = document.getElementById('feature');
  n = (n<4) ? n+1 : 1;

  f.style.opacity = 0;
  if(f.filters){f.filters.alpha.opacity = 0;}
  
  f.style.backgroundImage = "url('/images/features/feature_0" + n + ".jpg')";

if (n == 1)
{
	f.href = 'itunes://itunes.apple.com/us/podcast/real-radio-podcast-weekday/id124622455';
}
else if (n == 2) {
	f.href = 'http://socalprophecyconference.com/index.php';
}
else if (n == 3) 
{
	f.href = '/pages/broadcast_list';
}
else if (n == 4) 
{
	f.href = 'http://www.hischannel.com/BackQ/87/87Gallery/.php';
}

  fadeInt = setInterval(featureIn,10);
 }
 
function featureIn()
 { 
  alpha = (f.style.opacity) ? f.style.opacity * 100 : f.filters.alpha.opacity;
 
  if(alpha < 100) {
   alpha += 2;
   
   f.style.opacity = alpha / 100;
   if(f.filters){f.filters.alpha.opacity = alpha;}
  }
  else {
   clearInterval(fadeInt);
   setTimeout(featureRot,3500);
  }
 }

//Welcome box function
function wdis(tab)
 {
  document.getElementById('today').style.backgroundPosition = (tab == 'today') ? "bottom center" : "top center";
  document.getElementById('prior').style.backgroundPosition = (tab == 'prior') ? "bottom center" : "top center";
  document.getElementById('news').style.backgroundPosition = (tab == 'news') ? "bottom center" : "top center";
  document.getElementById('offer').style.backgroundPosition = (tab == 'offer') ? "bottom center" : "top center";

  document.getElementById('todayBox').style.display = (tab == 'today') ? "block" : "none";
  document.getElementById('priorBox').style.display = (tab == 'prior') ? "block" : "none";
  document.getElementById('newsBox').style.display = (tab == 'news') ? "block" : "none";
  document.getElementById('offerBox').style.display = (tab == 'offer') ? "block" : "none";
 }
