var theImages = new Array()

//Random-loading images
theImages[0] = 'http://www.irishartplus.com/resources/images/furniture/frontpagepic1.jpg'
theImages[1] = 'http://www.irishartplus.com/resources/images/furniture/frontpagepic2.jpg'
theImages[2] = 'http://www.irishartplus.com/resources/images/furniture/frontpagepic3.jpg'
theImages[3] = 'http://www.irishartplus.com/resources/images/furniture/frontpagepic4.jpg'
theImages[4] = 'http://www.irishartplus.com/resources/images/furniture/frontpagepic5.jpg'
theImages[5] = 'http://www.irishartplus.com/resources/images/furniture/frontpagepic6.jpg'
theImages[6] = 'http://www.irishartplus.com/resources/images/furniture/frontpagepic7.jpg'
theImages[7] = 'http://www.irishartplus.com/resources/images/furniture/frontpagepic8.jpg'
theImages[8] = 'http://www.irishartplus.com/resources/images/furniture/frontpagepic9.jpg'
theImages[9] = 'http://www.irishartplus.com/resources/images/furniture/frontpagepic10.jpg'
theImages[10] = 'http://www.irishartplus.com/resources/images/furniture/frontpagepic11.jpg'
theImages[11] = 'http://www.irishartplus.com/resources/images/furniture/frontpagepic12.jpg'
theImages[12] = 'http://www.irishartplus.com/resources/images/furniture/frontpagepic13.jpg'
theImages[13] = 'http://www.irishartplus.com/resources/images/furniture/frontpagepic14.jpg'
theImages[14] = 'http://www.irishartplus.com/resources/images/furniture/frontpagepic15.jpg'
var j = 0
var p = theImages.length;
var preBuffer = new Array()

for (i = 0; i < p; i++){
preBuffer[i] = new Image()
preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));

function showImage()
{
if(whichImage==0){
document.write('<a href="http://www.irishartplus.com/gallery/2"><img src="'+theImages[whichImage]+'" width="300" height="250" border="0" title="JP Rooney" alt="JP Rooney"></a>');
}
else if(whichImage==1){
document.write('<a href="http://www.irishartplus.com/gallery/16"><img src="'+theImages[whichImage]+'" width="300" height="250" border="0" title="Donal McNaughton" alt="Donal McNaughton"></a>');
}
else if(whichImage==2){
document.write('<a href="http://www.irishartplus.com/gallery/7"><img src="'+theImages[whichImage]+'" width="300" height="250" border="0" title="Gerry Glynn" alt="Gerry Glynn"></a>');
}
else if(whichImage==3){
document.write('<a href="http://www.irishartplus.com/gallery/4"><img src="'+theImages[whichImage]+'" width="300" height="250" border="0" title="Liam Reilly" alt="Liam Reilly"></a>');
}
else if(whichImage==4){
document.write('<a href="http://www.irishartplus.com/gallery/21"><img src="'+theImages[whichImage]+'" width="300" height="250" border="0" title="Richard Faulkner" alt="Richard Faulkner"></a>');
}
else if(whichImage==5){
document.write('<a href="http://www.irishartplus.com/gallery/9"><img src="'+theImages[whichImage]+'" width="300" height="250" border="0" title="Carrie O Duinn" alt="Carrie O Duinn"></a>');
}
else if(whichImage==6){
document.write('<a href="http://www.irishartplus.com/gallery/22"><img src="'+theImages[whichImage]+'" width="300" height="250" border="0" title="Nuala O Carroll" alt="Nuala O Carroll"></a>');
}
else if(whichImage==7){
document.write('<a href="http://www.irishartplus.com/gallery/18"><img src="'+theImages[whichImage]+'" width="300" height="250" border="0" title="Hugh McIlfatrick" alt="Hugh McIlfatrick"></a>');
}
else if(whichImage==8){
document.write('<a href="http://www.irishartplus.com/gallery/1"><img src="'+theImages[whichImage]+'" width="300" height="250" border="0" title="Sam McLarnon" alt="Sam McLarnon"></a>');
}
else if(whichImage==9){
document.write('<a href="http://www.irishartplus.com/gallery/1"><img src="'+theImages[whichImage]+'" width="300" height="250" border="0"  title="Sam McLarnon" alt="Sam McLarnon"></a>');
}
else if(whichImage==10){
document.write('<a href="http://www.irishartplus.com/gallery/4"><img src="'+theImages[whichImage]+'" width="300" height="250" border="0" title="Liam Reilly" alt="Liam Reilly"></a>');
}
else if(whichImage==11){
document.write('<a href="http://www.irishartplus.com/gallery/13"><img src="'+theImages[whichImage]+'" width="300" height="250" border="0" title="David Overend" alt="David Overend"></a>');
}
else if(whichImage==12){
document.write('<a href="http://www.irishartplus.com/gallery/2"><img src="'+theImages[whichImage]+'" width="300" height="250" border="0" title="JP Rooney" alt="JP Rooney"></a>');
}
else if(whichImage==13){
document.write('<a href="http://www.irishartplus.com/gallery/7"><img src="'+theImages[whichImage]+'" width="300" height="250" border="0" title="Gerry Glynn" alt="Gerry Glynn"></a>');
}
else if(whichImage==14){
document.write('<a href="http://www.irishartplus.com/gallery/8"><img src="'+theImages[whichImage]+'" width="300" height="250" border="0" title="Kate Beagan" alt="Kate Beagan"></a>');
}
}