$(document).ready(function() {
	
	$("#appellations").click(function(){
		$("#appellationContainer").slideToggle("slow", function() {
			var symbol = $('#appellations').css("list-style-image");
			var pathname = window.location.pathname;
			var urlStem = pathname.indexOf('/~jeroboam/') !== -1 ? "/jeroboams/" : '/';
			$('#appellations').css("list-style-image",
				symbol.indexOf('plus.png')!==-1 ?
				"url('"+urlStem+"jeroboams/wp-content/themes/wptheme/images/minus.png')" :
				"url('"+urlStem+"jeroboams/wp-content/themes/wptheme/images/plus.png')"
			);
		});
		return false;
	});
	
	if(window.location.search.indexOf('app=')!==-1) {
		$('#appellations').click();
	}

})
