$(function(){

	
	handleForms();
	
	
  // SIZE UP THE LEFTNAV HEIGHT	
	var leftnav = document.getElementById("leftnav");
	var content = document.getElementById("content");

	leftnav.style.height = (content.offsetHeight - 202) + "px";
	

});


/* FORMS */
function handleForms()
{
  
  
	$('input[type="text"]').addClass("idle-field").addClass("blank-field").addClass("text");
	
	
	$('input[type="text"]').focus(function()
	{
		$(this).removeClass("idle-field").removeClass("blank-field").addClass("focus-field");  
		
		if (this.value == this.defaultValue) this.value = '';  
		if(this.value != this.defaultValue) this.select();  
    }); 
	
	
	$('input[type="text"]').blur(function()
	{
		$(this).removeClass("focus-field").addClass("idle-field");
		if ($.trim(this.value) == '')
		{
			this.value = (this.defaultValue ? this.defaultValue : '');
			$(this).addClass("blank-field");
		}
		else
		{
			$(this).removeClass("blank-field");
		}
		
	});
	
	// $("form").
	
}
