jQuery.noConflict();
	function submit_ajax_form()
	{
			var str = jQuery('#wp-contact-form').serialize();
			jQuery.ajax({
			type: "POST",
			url: url + "/wp-content/plugins/ajax-contact-form/scripts/ajax.php",
			data: str,
			success: function(msg){
			jQuery("#validation").ajaxComplete(function(event, request, settings){
			if(msg == 'OK')
			{
			result = 'Your message has been sent. Thank you!';
			jQuery("#form-fields").hide();
			}
			else
			{
			result = msg;
			}
			jQuery('#validation').html(result);
			jQuery('#validation').fadeIn('slow');
			});
			}
			});
	}
