<!-- Begin
// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

// Phantom
theImages[0] = 'href="http://www.nytix.com/newsletter/2009/phantom2/index.html" target="_self"><img src="http://www.nytix.com/repository/frontpagerotation/phantom-winter.jpg" hspace=0 vspace=0 border=0 alt="Phantom Of The Opera Discount Broadway Tickets">'
// Memphis
theImages[1] = 'href="http://www.nytix.com/newsletter/2009/memphis2/index.html" target="_self"><img src="http://www.nytix.com/repository/frontpagerotation/memphis.jpg" hspace=0 vspace=0 border=0 alt="Memphis Discount Ticket Offer">'
// God Of Carnage
theImages[2] = 'href="http://www.nytix.com/newsletter/not-blasted/godofcarnage/index.html" target="_self"><img src="http://www.nytix.com/repository/frontpagerotation/godofcarnage.jpg" hspace=0 vspace=0 border=0 alt="God Of Carnage Discount Ticket Offer">'
// Hair
theImages[3] = 'href="http://www.nytix.com/newsletter/2009/hair/index.html" target="_self"><img src="http://www.nytix.com/repository/frontpagerotation/hair.jpg" hspace=0 vspace=0 border=0 alt="Hair Discount Ticket Offer">'
// Million Dollar Quartet
theImages[4] = 'href="http://www.nytix.com/newsletter/2010/milliondollarquartet/index.html" target="_self"><img src="http://www.nytix.com/repository/frontpagerotation/milliondollarquartet.jpg" hspace=0 vspace=0 border=0 alt="Million Dollar Quartet">'
// The Miracle Worker
theImages[5] = 'href="http://www.nytix.com/newsletter/2010/miracleworker/index.html" target="_self"><img src="http://www.nytix.com/repository/frontpagerotation/themiracleworker.jpg" hspace=0 vspace=0 border=0 alt="The Miracle Worker">'
// A Behanding in Spokane
theImages[6] = 'href="http://www.nytix.com/newsletter/2010/behanding/index.html" target="_self"><img src="http://www.nytix.com/repository/frontpagerotation/behanding.jpg" hspace=0 vspace=0 border=0 alt="A Behanding in Spokane">'


// do not edit anything below this line
var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<a '+theImages[whichImage]+'</a>');
}

//  End -->