var leftBnrs = new Array(); var rightBnrs = new Array(); leftBnrs[0] = new Array(4); leftBnrs[0]['link'] = 'http://www.grandecom.net/news_offers/?cat=6'; leftBnrs[0]['src'] = 'http://www.grandecom.com/bin_img/DeLaHoya_350x65.jpg'; leftBnrs[0]['alt'] = 'Boxing: De La Hoya vs. Pacquiao'; leftBnrs[0]['dur'] = 6000; leftBnrs[1] = new Array(4); leftBnrs[1]['link'] = 'http://www.grandecom.com/dtv'; leftBnrs[1]['src'] = 'http://www.grandecom.com/bin_img/DTV_350x65.jpg'; leftBnrs[1]['alt'] = ''; leftBnrs[1]['dur'] = 6000; leftBnrs[2] = new Array(4); leftBnrs[2]['link'] = 'http://grandecom.com/about_grande/community.php'; leftBnrs[2]['src'] = 'http://www.grandecom.com/bin_img/ComRelBanner_350x65.jpg'; leftBnrs[2]['alt'] = 'Community Relations'; leftBnrs[2]['dur'] = 6000; rightBnrs[0] = new Array(4); rightBnrs[0]['link'] = 'http://www.grandecom.net/news_offers/?cat=6'; rightBnrs[0]['src'] = 'http://www.grandecom.com/bin_img/WWEsurvivor_350x65.jpg'; rightBnrs[0]['alt'] = 'WWE: Survivor Series'; rightBnrs[0]['dur'] = 6000; rightBnrs[1] = new Array(4); rightBnrs[1]['link'] = 'http://www.grandecom.com/explore/cable/espn_gameplan.php'; rightBnrs[1]['src'] = 'http://www.grandecom.com/bin_img/ESPN-GP-350x65.jpg'; rightBnrs[1]['alt'] = ''; rightBnrs[1]['dur'] = 6000; rightBnrs[2] = new Array(4); rightBnrs[2]['link'] = 'http://grandecom.com/explore/cable/super.php'; rightBnrs[2]['src'] = 'http://www.grandecom.com/bin_img/ChillerBanner_350x65.jpg'; rightBnrs[2]['alt'] = 'Chiller'; rightBnrs[2]['dur'] = 6000; var lcurrent = -1; var rcurrent = -1; function leftBanners() { lcurrent++; if (lcurrent == leftBnrs.length){ lcurrent = 0; } document.images['leftBanner'].src = leftBnrs[lcurrent]['src']; document.images['leftBanner'].alt = leftBnrs[lcurrent]['alt']; setTimeout('leftBanners();', leftBnrs[lcurrent]['dur']); } function rightBanners() { rcurrent++; if (rcurrent == rightBnrs.length){ rcurrent = 0; } document.images['rightBanner'].src = rightBnrs[rcurrent]['src']; document.images['rightBanner'].alt = rightBnrs[rcurrent]['alt']; setTimeout('rightBanners();', rightBnrs[rcurrent]['dur']); } if (leftBnrs.length > 0) { leftBanners(); } if (rightBnrs.length > 0) { rightBanners(); } function bannerLink(val) { if (val == 'left') { if (leftBnrs.length > 0) { window.open(leftBnrs[lcurrent]['link'], 'bnrWin'); } else { // location.href = 'http://www.grandecom.net/news_offers/'; location.href = 'http://www.grandecom.com/explore/cable/ppv.php'; } } else if (val == 'right') { if (rightBnrs.length > 0) { window.open(rightBnrs[rcurrent]['link'], 'bnrWin'); } else { window.open('http://www.grandecom.com/ttp/', 'bnrWin'); } } }