/*Random_Image_Link.js
*/



function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="img/frontfeature/ovalcent_painter.gif"
myimages[2]="img/frontfeature/ovalcent_sculptor.gif"
myimages[3]="img/frontfeature/ovalcent_weaver.gif"
myimages[4]="img/frontfeature/ovalcent_gallery.gif"
myimages[5]="img/frontfeature/ovalcent_garden.gif"
myimages[6]="img/frontfeature/ovalcent_dickson.gif"


//specify corresponding links below
var imagelinks=new Array()
imagelinks[1]="#"
imagelinks[2]="#"
imagelinks[3]="#"
imagelinks[4]="#"
imagelinks[5]="#"
imagelinks[6]="#"


//Title text
var imagetext=new Array()
imagetext[1]="ANCA currently supports over 40 artists working in 35 purpose-built non-residential studios."
imagetext[2]="ANCA Mitchell studios have high ceilings, 3 phase power and roller door access. The complex has been designed to allow truck access to each of the studios and is therefore ideal for those working on a large scale and/or with heavy, noisy equipment."
imagetext[3]=" ANCA caters for a broad range of artists including photographers, painters, gold and silver smiths, wood workers, textile workers, sculptors and many others , and is located in two campuses in north Canberra."
imagetext[4]="Tenants hold an annual exhibition at the ANCA Gallery at Dickson and the space is also available for hire by artists in the wider community, primarily for exhibitions although it may be used for short term hire for meetings, workshops or as a studio."
imagetext[5]=" ANCA DICKSON is made up of studios opening onto a leafy central garden courtyard. The ANCA central administration office and Gallery are also situated there."
imagetext[6]="The Dickson complex is located in Canberra's inner north, close to shops, community facilities and transport links. "


//Image X size
var images_x=new Array()
images_x[1]="198"
images_x[2]="198"
images_x[3]="198"
images_x[4]="198"
images_x[5]="198"
images_x[6]="198"


//Image Y size
var images_y=new Array()
images_y[1]="246"
images_y[2]="246"
images_y[3]="246"
images_y[4]="246"
images_y[5]="246"
images_y[6]="246"


// Alt tags for images


var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<img src="'+myimages[ry]+'" width="'+images_x[ry]+'" height="'+images_y[ry]+'" border=0 alt="'+imagetext[ry]+'">')
}


random_imglink()