$(document).ready(function(){	
	$("#content-feed").fadeOut('slow', function(){
		url = '/content-feed';
		$.get(url, function(data){
			$("#content-feed").html(data).fadeIn("slow");
			$(".scrollable").scrollable({size: 3, speed: 500});
		});
	});	
});
