//javascript variables for TheatreHD website
//
var name1 = "info";
var name2= "theatrehd";
var name3= "tv";
var name4= "carolconcert";
var name5= "mailto";
var subject1="Enquiry from TheatreHD-website";
var subject2="2009 International Carol Concert";
var body1="Please keep me informed about the 2009 International Carol Concert";
//
//
//script to change a series of images 
//each image in the list MUST be within inverted commas
//each caption in the list MUST be within inverted commas 
image01="images/tat_hd_chile_1_web.jpg"
image02="images/tat_hd_fanfare_web.jpg"
image03="images/tat_hd_nzband_1_web.jpg"
image04="images/tat_hd_pd_1_web.jpg"
image05="images/tat_hd_watoto_2_web.jpg"
image06="images/tat_hd_pd_5_web.jpg"
image07="images/tattoo_chinese_web.jpg"
image08="images/tattoo_dancers_4_web.jpg"
image09="images/tattoo_finflag_web.jpg"
image10="images/tattoo_intro_fireworks_web.jpg"
image11="images/tattoo_pd_2_web.jpg"
image12="images/tattoo_topdrum_web.jpg"
//
caption01="Chilean Army Band and Evendart Dancers"
caption02="Opening Fanfare"
caption03="New Zealand Army Band"
caption04="Pipes and Drums"
caption05="Watoto Childrens' Choir"
caption06="Pipes and Drums"
caption07="Jiangxi Nishan School Kung Fu Group"
caption08="Highland Dancers"
caption09="The Saltire"
caption10="Fireworks"
caption11="Pipes and Drums"
caption12="Top Secret Drum Corps"
//
adImages = new Array(image01,image02,image03,image04,image05,image06,image07,image08,image09,image10,image11,image12)
adCaption = new Array(caption01,caption02,caption03,caption04,caption05,caption06,caption07,caption08,caption09,caption10,caption11,caption12)
thisAd = 0
imgCt = adImages.length
//
function rotate() {
if (document.images) {
thisAd++
if (thisAd == imgCt) {
thisAd = 0
}
//
document.tattoo_images.src=adImages[thisAd]
if (document.getElementById('captiontxt')){
document.getElementById('captiontxt').innerHTML=adCaption[thisAd]
}
// set image change speed .. 3 = 3 seconds etc
setTimeout("rotate()", 2 * 1000)
}
}
//
//



