/* default template js */
$(document).ready(function()
{
		
	$("#subpage_top").click(function () 
	{
		location.href = "http://nocharterschoolsalabama.org/";
	});
	
	/* activate tabs */
	if( $(".tabs").length )
	{
		$(".tabs").tabs();
	};
	
	$(".navlink img").hover(
		function()
		{
			this.src = this.src.replace(".gif","_active.gif");
		},
		function()
		{
			  this.src = this.src.replace("_active.gif",".gif");
		}
	);
	
});