/*
This script produces the summary tag in the middle of the screen
*/
var content=new Array() //change the array below to the text associated with your links Expand or contract the array, 	depending on how many links you have 
content[0]='Pembrey Park is cool'
content[1]='<div style="background-color:#FFCC00;height:134px;"><img src="/dythel/assets/kidwely.jpg" alt="Kidwely Castle" align="right" width="200" height="134" >Overlooking the River Gwendraeth, this imposing structure is well worth a visit.</div>'
content[2]='<div style="background-color:#FFCC00;height:134px;"><img src="/dythel/assets/bird.jpg" alt="National Wetland Centre" align="right" width="200" height="134" >The frontend of wetland conservation in Wales, why not take time to visit this excellent facility.</div>'
content[3]='<div style="background-color:#FFCC00;height:134px;"><img src="/dythel/assets/pembreybeach.jpg" alt="Pembrey Park" align="right" width="200" height="134" >Eight glorious miles of award winning sandy beaches just 3 miles from our doorstep!</div>'
content[4]='<div style="background-color:#FFCC00;height:134px;"><img src="/dythel/assets/pembrey.jpg" alt="Pembrey Park" align="right" width="200" height="134" >The beautiful Pembrey park. Guests at Dythel recieve free unlimited access to the 500 acre country park for the duration of their stay<br><br>Lots to do here - 130 meter ski slope; the longest toboggan run in Wales; 9 hole pitch and putt; miniature railway; cycle hire; ranger service; places to eat.</div>'
content[5]='<div style="background-color:#FFCC00;height:134px;"><img src="/dythel/assets/logo_dythel.jpg" alt="Dythel" align="right" width="200" height="134" >We are here!</div>'
content[6]='<div style="background-color:#FFCC00;height:134px;"><img src="/dythel/assets/golf.jpg" alt="Glyn Abbey" align="right" width="200" height="134" >Enjoy the good life! Just up the road is a championship class golf course, Glyn Abbey.  One of three courses in the area.</div>'
 
function regenerate(){
	window.location.reload()
	}
function regenerate2(){
	if (document.layers){
		appear()
		setTimeout("window.onresize=regenerate",450)
		}
	}
function changetext(whichcontent){
	if (document.all||document.getElementById){
		cross_el=document.getElementById? document.getElementById("descriptions"):document.all.descriptions
		cross_el.innerHTML='<font face="Verdana">'+whichcontent+'<font>'
		}
	else if (document.layers){
		document.d1.document.d2.document.write('<font face="Verdana">'+whichcontent+'</font>')
		document.d1.document.d2.document.close()
		}
	}

function appear(){
	document.d1.visibility='show'
	}

window.onload=regenerate2//-->