function initContactForm() {
	


}


function initPage() {
	var obj = document.getElementById('search');
	
	// create a setlistener funct
	// be able to figure out if we are in the contact form, etc.
	obj.onfocus = function() {
								obj.value = "";
								obj.style.backgroundColor = "#ffffff";
	}
							
	obj.onblur = function() {
								obj.value = "find something...";
								obj.style.backgroundColor = "#cccccc";
	}

 	var logo = document.getElementById('logo');
	
	logo.onclick = function() {							
									window.location = "/";
	}
	
	elements = Array('author', 'email', 'url');
	i = 0;

	if (o = document.getElementById('commentform')) {
		
		for (elm in elements) {
			document.getElementById(elements[elm]).onfocus = function() {
									this.style.backgroundColor = "#ffffff";
									this.select();
			}
			document.getElementById(elements[elm]).onblur = function() {
									this.style.backgroundColor = "#cccccc";
			}
		}
	}
	
	
	initContactForm();


}


initPage();