/*
Function to change the link url to just the image. This allows you to add the lightbox effect with javascript enabled browsers
and a photo gallery for none javascript browsers.
*/

function urlreplace()
{
	
    for (var i = 0; i < document.links.length; i++) {
        url = document.links[i].href
		urlResult=url.split("=")
		if((urlResult[0]=="http://www.gillywheeler.co.uk/photos.php?p")||(urlResult[0]=="http://gillywheeler.co.uk/photos.php?p"))
		{
			document.links[i].href="/photos/" + urlResult[1]
		}
    }
}
window.onload=urlreplace
