﻿

var Banners = new Array();

Banners[0] = ['/portals/4/skinrelated/NewImages/InternalBanner01.jpg', 'The Best Damn Poll In The Land NCAA College Football Polls', '/AboutUs.aspx'];
Banners[1] = ['/portals/4/skinrelated/NewImages/InternalBanner02.jpg', 'The Best Damn Poll In The Land NCAA College Football Conference Chaos', '/ConferenceChaos.aspx'];
Banners[2] = ['/portals/4/skinrelated/NewImages/InternalBanner03.jpg', 'The Best Damn Poll In The Land NCAA College Football News', '/ScoresandNews.aspx'];
Banners[3] = ['/portals/4/skinrelated/NewImages/InternalBanner04.jpg', 'The Best Damn Poll In The Land NCAA College Football Advertise with Us', '/AboutUs/Advertise.aspx'];

var index = Math.floor(Math.random() * Banners.length);
  
jQuery(document).ready(function() {

//jQuery(document).pngFix();
//jQuery("#mainBody").css("background", "none"); main-body-bg
jQuery("#InteriormainBody").css("background", "url(" + Banners[index][0] + ") no-repeat top left");
jQuery("#slideOverlay").attr("alt", Banners[index][1]);
jQuery("#image-map-learnmore").attr("href", Banners[index][2]);

  
  //jQuery("#main-body-internal").css("background", "url(" + getBackgroundSplash() + ") no-repeat top left");

});