jQuery(document).ready(function() {
$("#leftArea ul li h4 ").click(function () {
      $("#leftArea ul li ul").slideUp("slow");
	  $(this).parent().find("ul").slideToggle("slow");
    });
$("#leftArea ul li ul li:last-child").addClass("last-child");
$("#indexPage #contentArea").pngfix();
    $("#leftArea ul li a").each(function (i) {
		var testLink = $(this).attr("href");
		var pathname = $(location).attr('href');
		var pid = pathname.split('/')[pathname.split('/').length - 1];
	    if(testLink == pid){
			$(this).addClass('currentLink');
			}
      });
	$(".currentLink").parent().parent().css('display','block');
});
window.onerror=function(){
 return true;
}

