jQuery(document).ready(function(){
	swapValue = [];
	jQuery(".swap-value").each(function(i){
		 swapValue[i] = jQuery(this).val();
		 jQuery(this).focus(function(){
				if (jQuery(this).val() == swapValue[i]) {
					 jQuery(this).val("");
				}
				jQuery(this).addClass("focus");
		 }).blur(function(){
				if (jQuery.trim(jQuery(this).val()) == "") {
					 jQuery(this).val(swapValue[i]);
		 jQuery(this).removeClass("focus");
				}
		 });
	});
});  

