/********************************************

THP Global
Required Plugins: none
Modified From: web.enavu (http://web.enavu.com/tutorials/top-10-jquery-snippets-including-jquery-1-4/)
Author: Poccuo (http://www.poccuo.com)        	

*******************************************/

$(document).ready(function(){

	swap_val = [];  
	$(".fieldHint").each(function(i){
		
		//This adds the blur on load
		$(this).addClass("fieldHint_blur");
		 
		//This swaps the hint  
		swap_val[i] = $(this).val();  
		$(this).focusin(function(){  
			if ($(this).val() == swap_val[i]) {  
				$(this).val("");
				$(this).removeClass("fieldHint_blur"); 
			}  
		}).focusout(function(){  
			if ($.trim($(this).val()) == "") {  
				$(this).val(swap_val[i]);
				$(this).addClass("fieldHint_blur");  
			}  
		});  
	});

});
