$(document).ready(function() {
	$("div.scrollable").scrollable({ vertical:true, size: 4, globalNav: true }).mousewheel();
	$("a#badge").overlay({ expose: "#FF5A00" });
	$("div.post h2 a").overlay({ 
		expose: "#FF5A00",
		onBeforeLoad: function() {
			$.getJSON('ajax/render_post', { id: this.getTrigger().attr('rev') }, function(data) {
				$("div#exposed div.content").html(data.content);
			});
		}
	});
});
