var leftBnrs = new Array(); var rightBnrs = new Array(); leftBnrs[0] = new Array(4); leftBnrs[0]['link'] = 'http://portal.grandecom.net/store/cinemanow/genre.php'; leftBnrs[0]['src'] = 'http://www.grandecom.com/bin_img/GTheater_350x65.jpg'; leftBnrs[0]['alt'] = 'Grande Theater'; leftBnrs[0]['dur'] = 6000; rightBnrs[0] = new Array(4); rightBnrs[0]['link'] = 'http://www.grandecom.com/explore/starz_bundle.php'; rightBnrs[0]['src'] = 'http://www.grandecom.com/bin_img/Starz_350x65.jpg'; rightBnrs[0]['alt'] = 'Sign up for the Entertainment Bundle!'; rightBnrs[0]['dur'] = 6000; rightBnrs[1] = new Array(4); rightBnrs[1]['link'] = 'http://www.grandecom.com/explore/family_fun_bundle.php'; rightBnrs[1]['src'] = 'http://www.grandecom.com/bin_img/FamilyBundle_350x65.jpg'; rightBnrs[1]['alt'] = 'Family Fun Bundle'; rightBnrs[1]['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'); } } }