//initializer
$(function(){
	$('#contactFormSubmit').click( function(){ ajaxCall('/wp-content/themes/default-2442sch/ajaxCall/formParser.ajax.php', '#contactForm', '#contactForm', 'html');
	return false;
	});
});

//functions
function ajaxCall( resultUrl, inputSource, targetElement, resultType ){
	$.post( resultUrl, $(inputSource).serialize(), function(data){htmlLoader( data, targetElement );}, resultType );
}

function htmlLoader( data, element ){$(element).hide().html(data).fadeIn(500);}
