// JavaScript Document
function initEffects() {
	window.setInterval("makeStatic()", 5);
	position();
}

function makeStatic() { 
	if (document.all) {
		watermark.style.pixelTop = document.documentElement.scrollTop+10;
	} else {
		document.getElementById("watermark").style.top = window.pageYOffset+10+"px";
	}
}

function position() { 
	if (document.all) { 
		watermark.style.pixelLeft = document.documentElement.clientWidth-110;
		window.setTimeout('watermark.style.visibility = "visible"', 50);
	} else {
		document.getElementById("watermark").style.left = document.body.clientWidth-110+"px";
		window.setTimeout('document.getElementById("watermark").style.visibility = "visible"', 50);
	}
} 

