function prepareLinks() {
	var curHref =  new String;
	var menuitems=window.document.getElementsByTagName("a")
		for (var i=0; i<menuitems.length; i++){
			menuitems[i].onmousedown = function() {
				curHref = window.parent.location.href;
				curHref = curHref.substr(0, curHref.indexOf('?'));
				window.parent.location.href = 'http://kiwi.teikn.is/kuuvikriver.info/index.html?page='+this.getAttribute("href");
			}
		}
}

