// JavaScript Document// name="designation" content="PS"
// name="csg" content="Yes"
// name="pcg" content="Yes"
// end split here

/*
This is a robust script that loads a random image with corresponding link. 
You can throw in as many images into rotation as you wish.

*/

// Original script modified for caption under image

    function showcaseImage(path,linkURL,caption) {
    	this.path = path
    	this.linkURL = linkURL
    	this.caption = caption
    }

	var myimages = new Array()
	
	//specify random images below. You can have as many as you wish
	
myimages[0] = new showcaseImage ("images/arts_community/artsinyourcommunity2.jpg","http://www.vernonpublicartgallery.com","New Exhibitions Opening Reception<br>Vernon Public Art Gallery<br>January 5")

myimages[1] = new showcaseImage ("images/arts_community/artsinyourcommunity2.jpg","http://www.vancouverchamberchoir.com","SONG OF SONGS Poetry and Palestrina<br>Vancouver Chamber Choir<br>January 27") 

myimages[2] = new showcaseImage ("images/arts_community/artsinyourcommunity2.jpg","http://www.vancouverchamberchoir.com","MUSICAL CIRCLES Famous Families and Friends<br>Vancouver Chamber Choir<br>February 11")

myimages[3] = new showcaseImage ("images/arts_community/artsinyourcommunity2.jpg","http://www.vancouverchamberchoir.com","BACH IN EXCELSIS The Art of the Motets<br>Vancouver Chamber Choir<br>April 6")

myimages[4] = new showcaseImage ("images/arts_community/artsinyourcommunity2.jpg","http://www.vancouverchamberchoir.com","SONG STREET More Music from the Stage<br>Vancouver Chamber Choir<br>April 27")

myimages[5] = new showcaseImage ("images/arts_community/artsinyourcommunity2.jpg","http://www.vancanopera.com","Vancouver Cantonese Opera presents THE TWO GENTLEMENT OF BIN LANG at the Michael J. Fox Theatre, Burnaby<br>March 17")

myimages[6] = new showcaseImage ("images/arts_community/artsinyourcommunity2.jpg","http://www.theactmapleridge.org/gallery-current","DUPLICITY: Paintings by Chris Friesen at the Maple Ridge Art Gallery<br>January 14 - March 17")

myimages[7] = new showcaseImage ("images/arts_community/artsinyourcommunity2.jpg","http://www.vancouverchamberchoir.com","THE CHAMBER CHOIR & THE ISELERS: Two Great Choirs perform at Christ Church Cathedral, Vancouver, March 16")
 

  var randomNum = Math.floor(Math.random() * myimages.length) 

	document.write(''+
'      <img src="../' + myimages[randomNum].path + '" style="width: 160px; border: 0; padding: 5px 5px; 5px; 5px" alt="Electric Company Theatre’s production of Brilliant! staged at the Belfry Theatre, Victoria. Photo by Tim Matheson. Used with permission."><br><a href="' + myimages[randomNum].linkURL + '" target="_blank">' + myimages[randomNum].caption +'</a>' )        

/*
This will be kept for when we manually add line breaks to caption to see how it looks

var arr = myimages.count();
for (i=0;i<arr;i=i+1) {
	
document.write('<br><p style=\"width: 160px;\">' + myimages[i].caption +"</p>"  )  ;

}
*/
