jQuery.noConflict();
(function($){
$(function(){
		var imgFun=function(){
		 if($(this).siblings("ul").attr("class")=="childNews"){
        		$(this).children("img").attr("src","/statics/bgimg/LeftExpand.gif");
        		$(this).siblings("ul").removeClass("childNews");
        		$(this).siblings("ul").addClass("unShowChildNews");
        	}else{
        		$(this).children("img").attr("src","/statics/bgimg/LeftUnExpand.gif");
        		$(this).siblings("ul").removeClass("unShowChildNews");
        		$(this).siblings("ul").addClass("childNews");
        	}
		};
		
		var aFun=function(){
		 if($(this).siblings("ul").attr("class")=="childNews"){
        		$(this).siblings("img").attr("src","/statics/bgimg/LeftExpand.gif");
        		$(this).siblings("ul").removeClass("childNews");
        		$(this).siblings("ul").addClass("unShowChildNews");
        	}else{
        		$(this).siblings("img").attr("src","/statics/bgimg/LeftUnExpand.gif");
        		$(this).siblings("ul").removeClass("unShowChildNews");
        		$(this).siblings("ul").addClass("childNews");
        	}
		};

    $(".unactive p").click(imgFun);
		$("img.expandImg").siblings("a").click(aFun);
	})
	
$(function(){
    $(".isactive").parent("ul").siblings("img").attr("src","/statics/bgimg/LeftUnExpand.gif");
    $(".isactive").children("img.expandImg").attr("src","/statics/bgimg/LeftUnExpand.gif");
     $(".isactive").children("ul").removeClass("unShowChildNews");
    $(".isactive").children("ul").addClass("childNews");
    
	$(".isactive").parent("ul").removeClass("unShowChildNews");
	$(".isactive").parent("ul").addClass("childNews");
}) })(jQuery);
	
