//////////////////////////////////////////////////////////////////////////////////////////
////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","#FDFFB6");
	});
	
	$(".formElement_highlight").blur(function () { 
		$(this).css("background-color","#FFFFFF");
	});
	
	$('a.media').media();
});
//////////////////////////////////////////////////////////////////////////////////////////
////GENERAL FUNCTIONS
//////////////////////////////////////////////////////////////////////////////////////////

