$(document).ready(function() { 
  $("input[@type=submit]").addClass("submit");
  $("input[@type=password], input[@type=text], input[@type=file], textarea").addClass("text");
  $("input[@type=radio]").addClass("radio");
  $("input[@type=checkbox]").addClass("checkbox");

  $("input[@type=password], input[@type=text], textarea, select").focus(function() {
  	if (this.className.match(/\bprepopulated\b/)) {
  		this.value = '';
  	}
  	$(this).addClass("focus");
  });

  $("input[@type=password], input[@type=text], textarea, select").blur(function(){
  	if ($(this).find(".focus")) {
  		$(this).removeClass("focus");
  	}
  });
});

function select(targetDiv) {
	myForm = document.getElementById(targetDiv);
	myForm.focus();
	myForm.select();
}