/*$(document).ready(function(){
	
	
	 
 
 
	$("form.mailForm").each(function(){
		
		
		$(this).find(".cmsInput").click(function(){
			var v = $(this).val()
			
			if(v==$(this).next().html()){
				if(this.nodeName=="textarea") $(this).html("")
										 else $(this).removeAttr("value")
			}
									 
		}).blur(function(){
			var v = $(this).val()
			
			if($.trim(v)=="") $(this).val($(this).next().html())	
		})
		
		
		var o = { 
			target:        $(this).find(".formSending"),   // target element(s) to be updated with server response 
			beforeSubmit: function (formData, jqForm, options) { 
					// formData is an array; here we use $.param to convert it to a string to display it 
					// but the form plugin does this for you automatically when it submits the data 
					//alert($(jqForm).html());
					var h = $(jqForm).outerHeight();
					
					$(jqForm).find(".formSending").css("height", h+"px")
					
					$(jqForm).find(".formSending").show().html('<div class="loading" style="height: '+h+'px"></div>');
					$(jqForm).find(".formFields").hide();
							
			},  // pre-submit callback 
			//success:       showResponse  // post-submit callback 
			
			// other available options: 
			//url:       url         // override for form's 'action' attribute 
			//type:      type        // 'get' or 'post', override for form's 'method' attribute 
			//dataType:  null        // 'xml', 'script', or 'json' (expected server response type) 
			//clearForm: true        // clear all form fields after successful submit 
			//resetForm: true        // reset the form after successful submit 
	 
			// $.ajax options can be used here too, for example: 
			//timeout:   3000 
    	}; 
		
		$(this).ajaxForm(o);
		
	}) 
	
	
	
	
	
})*/


