jQ(document).ready(function(){
	jQ('.dirs_content').hide();
	jQ('a.show_dirs').append("<small>Show Directions</small>");
	
	jQ('a.show_dirs').click(function() {
		if (jQ(this).find("small").html() == "Show Directions"){ jQ(this).find("small").html("Hide Directions"); } else { jQ(this).find("small").html("Show Directions"); };
		jQ(this).parents().next("div").slideToggle(); 
		jQ(this).find("small").toggleClass("showing");
		return false;
	});

});
