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

	function submitContactForm()
	{
		$.post('plugins/contactForm/contactForm.php',$('#contactForm').serialize(),submitContactFormResponse,'json');
	}
	
	/*****************************************************************/
	
	function submitContactFormResponse(response)
	{
		var notice=$('#contactForm .footerContentContactFormLineNotice:first');
		
		notice.html(response.message);
		notice.css('display','block');
		
		$('.footerContentContactFormElement').removeClass('footerContentContactFormElementError');
		
		if(response.fieldName!=undefined)
	  	{	
			if(response.fieldName.length)
			{
				for(var key in response.fieldName)
					$(':input[name="'+response.fieldName[key]+'"]').addClass('footerContentContactFormElementError');
			}
		}
		
		return(false);
	}
	
	/*****************************************************************/
	/*****************************************************************/
