$().ready(function(){
	
	function bindForms(){
		$('form').ajaxForm({
			beforeSubmit: function(){
					$("#body").fadeOut(250);
				}, 
			success: function (responseText, statusText)  {
					$("#body").queue(function(){
						$(this).html($(responseText).children('#body').html());
						bindForms();
						$(this).dequeue();
					}).fadeIn(250);
				}
		});
	}
	
	$('.cross-fade').live('click', function(e){
		$("#body").fadeOut(250, function(){
			$("#body").load($(e.target).attr("href") + " #body > *", function(){
				$("#body").fadeIn(250);
				bindForms();
			});
		});
		e.preventDefault();
	});
	
	bindForms();
	
});
