
// set these variables 		
var numberOfSlides = 14;	
var numberOfFirstImage = 1;	
var delayIn100thSeconds = 500;

var destination = new Array();
var slide = new Array();
var Caption = new Array();


slide[0] = "images/Featured/churchfieldinch.jpg";
destination[0] = "Counties/Clare/KilmaleyB&Bs/CHURCHFIELD.html"; 
Caption[0] = "Churchfield, Ennis, Co. Clare";

slide[1] = "Counties/Cork/Pics/Melrose2.jpg";
destination[1] = "Counties/Cork/ClonakiltyB&Bs/Melrose.html"; 
Caption[1] = "Melrose, The Miles, Clonakilty, Co. Cork";

slide[2] = "Counties/Galway/Pics/Riverwalk1.jpg";
destination[2] = "Counties/Galway/OughterardB&Bs/RIVER%20WALK%20HOUSE.html"; 
Caption[2] = "River Walk, Oughterard, Co. Galway";

slide[3] = "Counties/Dublin/Pics/Greenlands6.jpg";
destination[3] = "Counties/Dublin/LuskB&Bs/GREENLANDS Bed Breakfast.html"; 
Caption[3] = "Greenlands, Corduff, Lusk, Co. Dublin";

slide[4] = "Counties/Galway/Pics/rosevilla1.jpg";
destination[4] = "Counties/Galway/SalthillB&Bs/ROSE VILLA.html"; 
Caption[4] = "Rose Villa, 10 Cashelmara, Knocknacarra Cross, Salthill";

slide[5] = "Counties/Clare/Pics/BunrattyHeights.jpg";
destination[5] = "Counties/Clare/BunrattyB&Bs/Bunratty Heights.html"; 
Caption[5] = "Bunratty Heights, Bunratty, Co. Clare.";

slide[6] = "Counties/Kerry/Pics/ROCKCRESTHOUSE1.jpg";
destination[6] = "Counties/Kerry/KenmareB&B/ROCKCREST HOUSE.html"; 
Caption[6] = "Rockcrest House, Gortamullen, Kenmare, Co. Kerry";

slide[7] = "Counties/Donegal/Pics/limekiln1.jpg";
destination[7] = "Counties/Donegal/CarrickfinB&Bs/LIMEKILN HOUSE.html"; 
Caption[7] = "Limekiln House, Carrickfin, Kincasslagh, Co. Donegal";

slide[8] = "Counties/Dublin/Pics/evergreen.jpg";
destination[8] = "Counties/Dublin/MalahideB&Bs/evergreen.html"; 
Caption[8] = "Evergreen, Kinsaley Lane, Malahide, Co. Dublin";

slide[9] = "Counties/Clare/Pics/atlanticview2.jpg";
destination[9] = "Counties/Clare/DoolinB&Bs/ATLANTIC VIEW B&B.html";
Caption[9] = "Atlantic View B&B, The Pier, Doolin, Co. Clare";

slide[10] = "Counties/Limerick/Pics/ODRISCOLLS1.jpg";
destination[10] = "Counties/Limerick/GlinB&Bs/O'DRISCOLL'S B&B.html"; 
Caption[10] = "O'Driscoll'S B&B, Main Street, Glin, Co. Limerick";

slide[11] = "images/Featured/Clonmore.jpg";
destination[11] = "Counties/Clare/QuiltyB&Bs/CLONMORE%20LODGE.html";
Caption[11] = "Clonmore Lodge, Quilty, Co. Clare";

slide[12] = "Counties/Clare/Pics/cliffmoher1.jpg";
destination[12] = "Counties/Clare/DoolinB&Bs/MOHER LODGE FARMHOUSE.html";
Caption[12] = "Moher Lodge Farmhouse, Cliffs Of Moher, Liscannor, Co. Clare";

slide[13] = "Counties/Limerick/Pics/Berkeley1.gif";
destination[13] = "Counties/Limerick/Adare/BerkeleyLodge.html"; 
Caption[13] = "Berkeley Lodge, Station Road, Adare, Co. Limerick";

var slideNumber = 0;

function goTo()
{
		window.location.href = destination[slideNumber];
}

function showNextSlide()
{	
	slideNumber = Math.floor(Math.random() * numberOfSlides);

	document.screen.src = slide[slideNumber]; 	// send slide to screen
	document.form2.text2.value=Caption[slideNumber];
	
	setTimeout("showNextSlide()",delayIn100thSeconds * 10);
}

window.onload=showNextSlide
        
