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

	function submitContactForm()
	{
		blockForm('contact-form','block');
		$.post('http://www.alehweb.net/contact_sender.php',$('#contact-form').serialize(),submitContactFormResponse,'json');
	}
	
	/*****************************************************************/
	
	function submitContactFormResponse(response)
	{
		blockForm('contact-form','unblock');
		$('#contact-user-name,#contact-user-email,#contact-message,#contact-send').qtip('destroy');

		var tPosition=
		{
			'contact-send':{'my':'right center','at':'left center'},
			'contact-message':{'my':'left center','at':'right center'},
			'contact-user-name':{'my':'left center','at':'right center'},
			'contact-user-email':{'my':'left center','at':'right center'}
		};

		if(typeof(response.info)!='undefined')
	  	{	
			if(response.info.length)
			{	
				for(var key in response.info)
				{
					var id=response.info[key].fieldId;
					$('#'+response.info[key].fieldId).qtip(
					{
						style: 		{ classes:(response.error==1 ? 'ui-tooltip-error' : 'ui-tooltip-success')},
						content: 	{ text:response.info[key].message },
						position: 	{ my:tPosition[id]['my'],at:tPosition[id]['at'] }
					}).qtip('show');				
				}
			}
		}
	}
	
	/*****************************************************************/
	/*****************************************************************/
