$().ready(function(){
	$("input.ReferenceProperty").click(function(){
		
	});
	registerAjaxForm();
	
});

function registerAjaxForm(){
	$(".ajaxForm").submit(function(){
		var self = $(this);
		self.parents(self.attr("targetChild")).parent().load(self.attr("action"),self.serialize())
		return false;
	});
}

