// Template.js

$(document).ready(function(){
						   
	/* The Sidebar
	*  Make the sidebar items collapsible
	*/
	$('#sidebar .sidebarTitle').click(function() {
		$(this).next().toggle("slow");
		return false;
	}).next().show();
		
	/* Live Search
	*  Passes the search term to Search.php using AJAX
	*/
	$('#s').liveSearch({ajaxURL: 'index.php?ajax=1&s='});
	
});
