<!--
document.write('<script type="text/javascript" src="wedData.js"></script>');

var pArray = document.location.href.split("/");
var myPage = pArray[pArray.length-1];

function wedLinks() {
	for (i=0;i<wed.length;i++) {
		document.write('<div class="coupleLink">');
		if (myPage == wed[i].html) {
			document.write('<span "'+ wed[i].html +'" class="wedNameoff">'+ wed[i].couple +'</span><br/>');
			document.write('<span "'+ wed[i].html +'" class="wedLocoff">'+ wed[i].location +'</span>');
		} else {
			document.write('<a href="'+ wed[i].html +'" class="wedName">'+ wed[i].couple +'</a><br/>');
			document.write('<a href="'+ wed[i].html +'" class="wedLoc">'+ wed[i].location +'</a>');
		}

		document.write('</div>');
	}
}
//-->
