function init(){
	/* Wrap all HR's in a DIV.HR */
	$("hr").wrap("<div class='hr'></div>");
	
	/* Make all .scrollable Scrollable: http://flowplayer.org/tools/demos/scrollable/index.html */
	// $(".scrollable").scrollable({size:2, loop: true});
}

// Tiny Onload :)
$(function() {init();});

