function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="img/img_home_featured_project1.jpg"
myimages[2]="img/img_home_featured_project2.jpg"
myimages[3]="img/img_home_featured_project3.jpg"
myimages[4]="img/img_home_featured_project4.jpg"
myimages[5]="img/img_home_featured_project5.jpg"
myimages[6]="img/img_home_featured_project6.jpg"
myimages[7]="img/img_home_featured_project7.jpg"
myimages[8]="img/img_home_featured_project8.jpg"
myimages[9]="img/img_home_featured_project9.jpg"
myimages[10]="img/img_home_featured_project10.jpg"

//specify corresponding links below
var imagelinks=new Array()
imagelinks[1]="experience/projects - 2006/hospitality/hospitality_the_standard.html"
imagelinks[2]="experience/projects - 2006/commercial/commercial_505_fifth_avenue.html"
imagelinks[3]="experience/projects - 2006/educational/educational_nylaw_185westbroadway.html"
imagelinks[4]="experience/projects - 2006/residential/residential_240_park_avenue_south.html"
imagelinks[5]="experience/projects - 2006/residential/residential_330_spring_street.html"
imagelinks[6]="experience/projects - 2006/government/government_queens_family_courthouse.html"
imagelinks[7]="experience/projects - 2006/retail/retail_435_seventh_avenue.html"
imagelinks[8]="experience/projects - 2006/residential/residential_45_park_avenue.htm"
imagelinks[9]="experience/projects - 2006/commercial/commercial_360_madison_avenue.html"
imagelinks[10]="experience/projects - 2006/cultural/cultural_american_folk_art_museum.html"

var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<a href='+'"'+imagelinks[ry]+'"'+'><img src="'+myimages[ry]+'" border=0></a>')
}


