// 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/artsinyourcommunity.jpg","www.vancouverchamberchoir.com",
"MUSIC OF THE MASTERS: Vancouver Chamber Music opens its 40th anniversary season<br>September 24")

myimages[1] = new showcaseImage("images/arts_community/artsinyourcommunity.jpg","www.thedancecentre.ca","Shiamak's Bollywood Jazz: The Dance Centre’s popular Discover Dance					noon series<br>September 16")

myimages[2] = new showcaseImage("images/arts_community/artsinyourcommunity.jpg","www.vernonpublicartgallery.com","Artist Talks: Moving Targets: In Flux<br>An exhibition by BC-based artist David Alexander<br>September 17 - 18")

myimages[3] = new showcaseImage("images/arts_community/artsinyourcommunity.jpg","www.phjazz.ca","14th Annual Pender Harbour Jazz Festival<br>September 17 - 19")

myimages[4] = new showcaseImage("images/arts_community/artsinyourcommunity.jpg","www.vernonpublicartgallery.com",					
"Brian Montieth Exhibition<br>A portraiture-based exhibition dedicated to Ross Friesen <br> Vernon Public Art Gallery <br>August 5 - October 14")

myimages[5] = new showcaseImage("images/arts_community/artsinyourcommunity.jpg","www.vernonpublicartgallery.com","Sookinchoot Exhibition: The Seeing of Oneself<br>Vernon Public Art Gallery<br>August 5 - October 14")

myimages[6] = new showcaseImage("images/arts_community/artsinyourcommunity.jpg","www.vernonpublicartgallery.com","Scott Bertram Exhibition: Unfixed<br>Vernon Public Art Gallery<br>August 5 - October 14")

myimages[7] = new showcaseImage("images/arts_community/artsinyourcommunity.jpg",
"www.vernonpublicartgallery.com","David Alexander Exhibition: Moving Targets: In Flux<br>Vernon Public Art Gallery<br>August 5 - October 14")

myimages[8] = new showcaseImage("images/arts_community/artsinyourcommunity.jpg","www.asmas.ca","Ribbon Show <br> Armstrong Spallumcheen Museum and Art Gallery <br>September 3 - October 1")

myimages[9] = new showcaseImage("images/arts_community/artsinyourcommunity.jpg","www.visacgallery.com", "Trail Artwalk 2010<br>ISAC Gallery and Creative Art Centre<br>June 25 - September 3")

myimages[10] = new showcaseImage("images/arts_community/artsinyourcommunity.jpg","www.bardonthebeach.org","Bard on the Beach Shakespeare Festival, Vancouver<br>June 3 - September 25")

myimages[11] = new showcaseImage("images/arts_community/artsinyourcommunity.jpg","www.vivomediaarts.com","BLOODSTORM: PAARC’s annual festival of Artist Run Culture<br>VIVO Media Arts Centre<br>Vancouver<br>September 9 - October 9")

myimages[12] = new showcaseImage("images/arts_community/artsinyourcommunity.jpg","www.bambertonhistoricalsociety.org","Bamberton's Mystery History Tours<br>Bamberton Historical Society, Mill Bay<br>July 4 - September 26")

  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="Photo of Cara Yeates by Leila Morrissey. Used by 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>"  )  ;

}
*/