var image0 = new Image();
image0.src = "http://boxoffice.com/featured_stories/images/uploads/earlyweekendpredictions111809.png";


var image1 = new Image();
image1.src = "http://boxoffice.com/featured_stories/images/uploads/newmoonmidnight.png";


var image2 = new Image();
image2.src = "http://boxoffice.com/featured_stories/images/uploads/blindsidefeature.png";


var image = new Array( image0.src, image1.src, image2.src ); // No comma after last item

var text = new Array('<a href="http://boxoffice.com/featured_stories/2009/11/early-weekend-predictions-37.php" class="title">UPDATED: Weekend Predictions</a> Summit\'s \<em\>The Twilight Saga: New Moon\<\/em\> is capable of doing some serious damage at the box office this weekend.  <a href="http://boxoffice.com/featured_stories/2009/11/early-weekend-predictions-37.php" class="entry-links">Read</a>', '<a href="http://boxoffice.com/featured_stories/2009/11/new-moon-at-midnight.php" class="title">UPDATED: \'New Moon\' at Midnight</a> Summit\'s vampire flick has broken a record at the box office for midnight shows. <a href="http://boxoffice.com/featured_stories/2009/11/new-moon-at-midnight.php" class="entry-links">Read</a>',  '<a href="http://boxoffice.com/featured_stories/2009/11/the-blind-side-seems-like.php" class="title">Fighting Racism on the Field</a> \<em\>The Blind Side\<\/em\> is not the first film to use sports to make a point about racism. Will audiences respond?  <a href="http://boxoffice.com/featured_stories/2009/11/the-blind-side-seems-like.php" class="entry-links">Read</a>' ); // No comma after last item

var url = new Array("http://boxoffice.com/featured_stories/2009/11/early-weekend-predictions-37.php", "http://boxoffice.com/featured_stories/2009/11/new-moon-at-midnight.php",  "http://boxoffice.com/featured_stories/2009/11/the-blind-side-seems-like.php" ); // No comma after last item

var count = 0;
var ns6 = document.getElementById&&!document.all
var ie4 = document.all&&navigator.userAgent.indexOf("Opera")==-1

function init_news_bar(){
    setExclusive(count);
}

function rotate(){
    resetBackgrounds();

    if (count < text.length-1) {
        count++;
    }
    else {
        count = 0;
    }
    setExclusive(count);
}

function setExclusive(story) {
    if (!story) {
        story = 0;
    }
    resetBackgrounds();
    
    // Set the selected story to display
    var exclusiveimage = document.getElementById('exclusiveimage');
    exclusiveimage.src = image[story];
    var exclusivetext = document.getElementById('exclusivetext');
    exclusivetext.innerHTML = text[story];
    var button = document.getElementById('exclusivebutton' + story);
    button.style.background = "#fff"
    
    count = story; // keep the rotation in order
}

function resetBackgrounds() {
    // Reset button backgrounds
    var button = document.getElementById('exclusivebutton0');
    button.style.background = "none";
    var button = document.getElementById('exclusivebutton1');
    button.style.background = "none";
    var button = document.getElementById('exclusivebutton2');
    button.style.background = "none";
}

setInterval("rotate()",5000);
init_news_bar();




