function addBlock(url)
{
	$.ajax({
		url: url,
	  	cache: false,
	  	success: function(html) {
	    	$("#blocks").append(html);
	  	}
	});
}