// Template.js for Harbour Theme

$(document).ready(function(){
						   
	/* The Sidebar
	*  Make the sidebar items collapsible
	*/
	$('#sidebar .sidebarTitle').click(function() {
		$(this).next().toggle("slow");
		return false;
	}).next().show();
	
	/* Dynamic text replacement with Cufon
	*  The Branding, the company tagline and the small logo at the bottom
	*/
	Cufon.replace('#hero h1', {
		textShadow: '#79d5de 1px 1px'
	});
	Cufon.replace('#header #branding a', {
		textShadow: '#7acfd8 1px 1px'
	});
	Cufon.replace('#footer .credits a', {
		textShadow: '#1a1f20 1px 1px'
	});
	
	/* Live Search
	*  Passes the search term to Search.php using AJAX
	*/
	$('#s').liveSearch({ajaxURL: 'index.php?ajax=1&s='});
	
});
