﻿window.onload=function(){
Nifty("div#box","transparent");
Nifty("div#links","transparent");
banner();
links();

}

function banner()
{
var getimg = document.getElementById("bannerphoto");
var gettext = document.getElementById("bannertitle");
var img= new Array();
img[0]="abersoch.jpg";
img[1]="castle.jpg";
img[2]="crafnant.jpg";
img[3]="deebridge.jpg";
img[4]="penmon.jpg";
img[5]="viaduct.jpg";
var alt= new Array();
alt[0]="Abersoch Beach and Llanbedrog Head, Traeth Abersoch a Thrwyn Llanbedrog - Dave Newbould";
alt[1]="Denbigh Castle, Castell Dinbych - Dave Newbould";
alt[2]="Llyn Crafnant - Dave Newbould";
alt[3]="Dee Bridge Flintshire - Ray Bibby of Orange Imaging Creative";
alt[4]="Penmon Lighthouse and Puffin Island, Goleudy Penmon ag Ynys Seiriol - Dave Newbould";
alt[5]="Viaduct Llangollen, Pont y Rheilffordd ger Llangollen - Dave Newbould";


var bit = Math.round(Math.random()*100) % 6;
var imgFolder = "../images/b/";
var credit = "Photo / Llun: ";
 getimg.setAttribute("src", imgFolder+img[bit]);
 getimg.setAttribute("alt", credit+alt[bit]);
 
 gettext.innerHTML = credit+alt[bit];
 
 return false;
}

function links()
{
var getLinks = document.getElementById("linksCont");
var text= new Array();
text[0]="<a href=\'http://www.moviemapnw.co.uk/\'><img src=\'../images/links/moviemap.gif\' alt=\'movie map north wales\' height=\'82\' width=\'125\' border=\'0\' /></a><p>find out about film and tv locations throughout the region - check out the very first movie map North Wales:</p><p><a href=\'http://www.moviemapnw.co.uk/\'>www.moviemapnw.co.uk</a></p>";
text[1]="<a href=\'http://www.golf-northwales.co.uk/\'><img src=\'../images/links/golf.jpg\' alt=\'golf north wales\' width=\'125\' height=\'88\' border=\'0\' /></a><p>Developing the Golf offer of North Wales. Book your package and play on a range of courses across the region.</p><p><a href=\'http://www.golf-northwales.co.uk/\'>www.golf-northwales.co.uk</a></p>";
text[2]="<a href=\'http://www.adventure-northwales.com/\'><img src=\'../images/links/adventurelogo.gif\' alt=\'adventure north wales\' width=\'125\' height=\'95\' border=\'0\' /></a><p>Adventure North Wales the great outdoors, right on your doorstep! North Wales is the perfect destination for an activity break or a social getaway.</p><p><a href=\'http://www.adventure-northwales.com/\'>www.adventure-<br />northwales.com</a></p>";
text[3]="<a href=\'http://www.walkingnorthwales.co.uk\'><img src=\'../images/links/walkingnwlogo.gif\' alt=\'walking north wales\' width=\'125\' height=\'85\' border=\'0\' /></a><p>North Wales has everything to offer the walker, use this site to plan your walking break in North Wales.</p><p><a href=\'http://www.walkingnorthwales.co.uk/\'>www.walking<br />northwales.co.uk</a></p>";
text[4]="<a href=\'http://www.info4-u.com/\'><img src=\'../images/links/info4-u.gif\' alt=\'info4-u.com keeping your visitors informed\' width=\'125\' height=\'72\' border=\'0\' /></a><p>Info4-u will revolutionise the way you manage and improve your customer / client relationships.</p><p><a href=\'http://www.info4-u.com/\'>www.info4-u.com</a></p>";

var bit2 = Math.round(Math.random()*100) % 5;
getLinks.innerHTML = text[bit2];

return false;
}

/* Gallery Image and Caption Swap*/
function swapPhoto(photoSRC,theCaption) {
	  var theImage = document.getElementById("mainPhoto");
	  var imgFolder = "/images/article_images/";
	  var imageCaption = document.getElementById("caption");
	  theImage.setAttribute("src", imgFolder+photoSRC);
	  		if (imageCaption.length = 0){
	  			return false;}
	  		else { imageCaption.innerHTML = theCaption; }
}
/*document.write(text[bit]);*/





