// JavaScript Document

//Changing text and pictures

var thisTour = 0

function nextText() {
if (thisTour < 3) {
thisTour++
}
	var element = document.getElementById("rightboxtour");
	element.innerHTML = (tour[thisTour]);
    document.myPicture.src=posters[thisTour]
}

function previousText() {
if (thisTour > 0) {
thisTour--
}
	var element = document.getElementById("rightboxtour");
	element.innerHTML = (tour[thisTour]); 
    document.myPicture.src=posters[thisTour]
}

//text to change
tour = new Array();

tour[0] = "<p><strong>LOVE, OR LACK THEREOF - CD RELEASE</strong></p><p><em>7PM - 9PM</em></p><p>Show done at 9pm - Party continues for folks not having to go to work Monday morning.</P><p>Tickets $10 - Includes copy of the new album</p><p>Advance tickets available at:  Encore Records / Orange Monkey<br /> or call - (519) 223-0572</p> <p>Cast includes - Lucas Stagg, Carloline Stoeser, Jesse Altman, John Mars, Marcia, Scott Wicken, Mark Imola, Mary 5e, Craig McNair, Irv Russell, Tommy Williams, Richard Mann, Kate Battler, and Gareth Carr</p><p><strong>The Starlight</strong><br />Sunday, June 4th, 2006<br />47 King St. N, Waterloo, ON<br />Telephone: (519) -885-4970</p><p>Poster by <A href='http://brianhardy.ca'>Brian Hardy</A> </p><p>Please visit <A href='http://janebond.ca'>Jane Bond</A> for more Starlight information.</p>";
tour[1] = "<p><strong>A NEW ROOTS NIGHT:</strong><br />The last Saturday of every month.<br />The Boathouse.</p><p><strong>Stagg Ranch Saturday #4:<br />The big smokes invade</strong><br/><em>w/ featured guests:</em><br />From Toronto / Tanya Philipovich<br />From NYC / Guitar Bomb<br />From NYC / Brooke Pridemore<br />Lucas Stagg w/ Jesse Altman & Marcia<br />DJ  Gareth Carr</p><p><strong>The Boathouse:</strong><br/>Saturday, May 27th, 2006<br />57 Jubilee Drive, Kitchener, ON - Victoria Park<br />Telephone: (519) -745-7202</p><p>Poster by <A href='http://brianhardy.ca'>Brian Hardy</A></p><p>Please visit <A href='http://craftyrecords.com'>Crafty Records</A> or <A href='http://tanyarock.com'>Tanyarock.com</A> for more information.</p>";
tour[2] = "<p><strong>Love or Lack Thereof rehearsals.<br />Every Wednesday afternoon in May.<br />1pm - 4pm.</strong></p><p>Thank you to Doug & the fine folks at the Circus Room for lending us their stage for the month of May in order to rehearse for the Starlight CD release on June 4th.<br /><br />Sincerely,<br /><br />Lucas.</p><p><strong>The Circus Room</strong><br />729 King St. E, Kitchener, ON<br />Telephone: (519) -743-0368</p>";
tour[3] = "<p><strong>A NEW ROOTS NIGHT:</strong><br />The last Saturday of every month.<br />Except this month because of prior commitments.<br />The Boathouse.</p><p><strong>Stagg Ranch Saturday #5:<br/>Junebuggin'</strong><br/><em>w/ featured guests:</em>  <br />The Hawk Dawsons<br />The Brooks Sisters<br />Craig McNair<br />Lucas Stagg w/ Jesse Altman & Marcia<br />DJ  Gareth Carr</p><p><strong>The Boathouse:</strong><br/>Saturday, June 17th, 2006<br />57 Jubilee Drive, Kitchener, ON - Victoria Park<br />Telephone: (519) -745-7202</p><p>Poster by <A href='http://brianhardy.ca'>Brian Hardy</A></p><p>Please visit <A href='http://brookssisters.com'>The Brook Sisters</A> for more information.</p>";

//pictures to change
posters = new Array();

posters[0] = "images/flyers/loveorlack.png";
posters[1] = "images/flyers/bigsmokes.png";
posters[2] = "images/flyers/circusbox.png";
posters[3] = "images/flyers/junebuggin.png";



//preloading images
    if (document.images)
    {
        image1 = new Image(100, 100);
        image1.src = "images/flyers/loveorlack.png";

        image2 = new Image(468, 60);
        image2.src = "images/flyers/bigsmokes.png";

        image3 = new Image(50, 20);
        image3.src = "images/flyers/circusbox.png";
		
        image4 = new Image(100, 100);
        image4.src = "images/flyers/junebuggin.png";		
    }

