//////////////////////////////////////////////////////////////////////////////////////////
////on body load arguments
//////////////////////////////////////////////////////////////////////////////////////////
$(document).ready(function(){
						   
	
	$(".resetFormElementInfo").click(function () { 
		 if(this.name == $(this).val())
			$(this).val("");
	});
	
	$(".resetFormElementInfo").blur(function () { 
		 if($(this).val() == "")
			$(this).css("text-transform","capitalize").val(this.name);
	});
	
	
	$(".formElement_highlight").click(function () { 
		$(this).css("background-color","#D6E69D");
	});
	
	$(".formElement_highlight").blur(function () { 
		$(this).css("background-color","#FFFFFF");
	});

	
	
});

<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}





function showOptions(){
	$("#carTypeOptionDropDown").slideToggle("fast");
}

function showOptionsPrice(){
	$("#carPriceOptionDropDown").slideToggle("fast");
}
function showOptionsTerm(){
	$("#carTermOptionDropDown").slideToggle("fast");
}

//-->

//////////////////////////////////////////////////////////////////////////////////////////
////GENERAL FUNCTIONS
//////////////////////////////////////////////////////////////////////////////////////////
