$(document).ready(function(){

	$("div.scrollable").scrollable({size:7});

	$(window).scroll(function () {
		if ($(window).scrollTop() >= 500) {
			$('#gototop').fadeIn("slow");
		} else {
			$('#gototop').fadeOut("slow");
		}
	});
});
