/* <![CDATA[ */
$(document).ready( function(){
	
	var pathArray = window.location.pathname.split( '/' );
	$("ul#nav a[href=" + location.pathname + "]").parents('li').addClass('current-cat');
	$("ul#nav a[href=" + window.location.protocol + "//" + window.location.host + "/category/" + pathArray[1] + "/]").parents('li').addClass('current-cat');
	if(pathArray[1] == 'about'){
		$("ul#subnav li ul").css('display','block');
	}
	
	$("#add").click(function(){
		$("#bizdir_add_form").slideToggle();
	});
	
	$("#directory").accordion({
		autoHeight: false
	});
	$("input.subscribe, #searchform input.text").focus( function(){
		$(this).val("");
	});

});
/* ]]>*/
