$(document).ready(function() {
	$(".cateList_container h1").hover(function(){
		$(this).css("cursor","pointer");  
	},function(){
		$(this).css("cursor","default"); 
		});
	$(".cateList_container ul:not(:first)").css("display","none");
	$(".cateList_container h1").click(function(){
		$(this).next().slideToggle("fast");
		});
    $('.cateList_container h1 img').hover(function(){
        $(this).fadeTo(10,0.0);
    },function(){
        $(this).fadeTo(10,1.0);
    });
});

