$j(document).ready(function() {
	
	
	$j(".subhead").click( function () {
		var contentid = this.id + "_content";
		if ($j("#" + contentid).css("display") != "block") {
			$j("#" + contentid).slideDown("slow");
			$j(this).css({backgroundImage:"url(/_gfx/menu_selected2.gif)", backgroundColor:"rgb(210, 180, 152)"});
		} else {
			$j("#" + contentid).slideUp("slow");
			$j(this).css({backgroundImage:"url(/_gfx/menu_selected.gif)", backgroundColor:""});
		}
});

});