/*
Kenar Input Fields — http://www.kenar.bg
Created by BSH Ltd. — http://www.bsh-bg.com
Last Update: 08.12.2004
*/

inputTexts = function() {
	if (document.getElementById) {
		inputTextArray=document.getElementsByTagName("input");
		for(var i=0; i<inputTextArray.length; i++) {
			var input = inputTextArray[i];
			if(input.getAttribute("type") == "text" || input.getAttribute("type") == "password") {
				input.onfocus = function() {
					//this.style.backgroundColor='#FFF';
					var defaultValue = this.value;
					this.select();
					this.value = "";
				}
				input.onblur = function() {
					//this.style.backgroundColor='#F1F1F1';
					if(this.value == "") {
						this.value = this.defaultValue;
					}
				}
			}
		}
	}
}
window.onload=inputTexts;