function hoverLink(layer, newStyle) { applyFilter(layer, "className", newStyle); }
function offLink(layer, newStyle) { applyFilter(layer, "className", newStyle); }	
function applyFilter(layer, property, value) {
	layer.style.filter = "blendTrans(duration=.5)";
	layer.filters.blendTrans.apply();
	layer[property] = value;
	layer.filters.blendTrans.play();
}	

function ChangePage(pageName, subPage) {
	document.location.href = "index.asp?method=" + pageName;
}
