// Comments here!
function SwapHover(daImage){
	document.images[daImage].src = 'images/menu/' + daImage + '_hover.gif';
//	window.alert(CurrentPage);
}

// Comments here!
function SwapNormal(daImage){
	if (daImage == CurrentPage) {
		document.images[daImage].src = 'images/menu/' + daImage + '_active.gif';
	} else {
		document.images[daImage].src = 'images/menu/' + daImage + '_normal.gif';
	}
}

// Load the title image according to the 'CurrentPage' var.
function LoadTitleImage(daImage){
	document.images['title'].src = 'images/titles/title_' + daImage + '.gif';
}
