$(document).ready(function() {

	$("#programPartThemeList").attr("display", "none");
	$("#programPartTheme").click(function() {

		if ($("#programPartThemeList").attr("display") == "none") {
			$("#programPartThemeList").slideDown("slow");
			$("#programPartThemeList").attr("display", "");
		} else {
			$("#programPartThemeList").slideUp("slow");
			$("#programPartThemeList").attr("display", "none");
		}
		
		return false;
	});
	
// if the word "/0/0/0/" is in the url, slide down the specials submenu
	var url = location.pathname;
	if (url.indexOf("/0/0/0/")>=0) {
		if ($("#programPartThemeList").attr("display") == "none") {
			$("#programPartThemeList").slideDown("slow");
			$("#programPartThemeList").attr("display", "");
		}
	}


});

