$(function(){
	$('h1').click(function(){
		$('.items').fadeOut(400, function() {
			$('.items').before('<p class="loading">&nbsp;</p>');
			$('.items').load('ifellinlove.php', function() {
				$('.loading').remove();
				$('.items').fadeIn();
			});
		});
	});
});
