$(function(){
|
$("li.firstTree").live("click",function() {
|
var $nextUl = $(this).children("ul.secondTree");
|
if($nextUl.is(":visible")) {
|
$(this).removeClass("cur");
|
$nextUl.slideUp("show");
|
} else {
|
$(this).addClass("cur");
|
$nextUl.slideDown("show");
|
}
|
});
|
|
$("li.secondTreeBtn").live("click",function() {
|
var $nextUl = $(this).children("ul.thirdTree");
|
if($nextUl.is(":visible")) {
|
$(this).removeClass("cur");
|
$nextUl.slideUp("show");
|
} else {
|
$(this).addClass("cur");
|
$nextUl.slideDown("show");
|
}
|
return false;
|
});
|
|
$("li>a").live("click",function(event) {
|
$("li>a").removeClass("focus");
|
$(this).addClass("focus");
|
event.stopPropagation();
|
});
|
})
|