/*
	CSS Watermark Effect on Images v 1.0
	created by: Martin Ivanov
	website: http://www.acidmartin.com or http://acidmartin.wemakesites.net/
	email: acid_martin@yahoo.com
*/
window.onload = function()
{
	if(document.all)
	{
		document.getElementById('WatermarkText').attachEvent("onkeyup", applyText);
		document.getElementById('ChangePosition').attachEvent("onchange", applyPosition);
	}
	else
	{
		document.getElementById('ChangePosition').addEventListener("change", applyPosition, true);
	}
	getCode();
}

applyPosition = function()
{
	document.getElementById('01').className = "watermark " + document.getElementById('ChangePosition').value;
	getCode();
}

applyText = function()
{
	document.getElementById('01_text').innerHTML = document.getElementById('WatermarkText').value;
	getCode();
}