// custom global js behaviors for basically bonsai
// NOTE: using PROTOTYPE here not jqeury
document.observe("dom:loaded", function() {
	// add a back link to the left sidebar top via javascript since it requires js to work
	$$('div.col-left').first().insert(
		{ 'top':new Element('a', { 'class': 'back-link', href: 'javascript:history.go(-1);' }).update("&lt; Back") }
	);
});
