function toggleMenu() {
   $(".listArea").slideToggle("normal");
   if(getCookie("tsmn") == null) {
        setCookie("tsmn", false, 30, "/") ;
   } else {
        if(getCookie("tsmn")=="true") {
            setCookie("tsmn", false, 30, "/") ;
        } else {
            setCookie("tsmn", true, 30, "/") ;
        }
   }
}

function openmenu(){
    if($.query.get('nv')==null && getCookie("lmaincat")!=null) {
        $("#"+getCookie("lmaincat") +" > dd").show();
    }
}
$(function(){
    if(getCookie("tsmn")==null) {
        $(".listArea").show();
        setCookie("tsmn", true, 30, "/") ;
    }else{
        if(getCookie("tsmn")=="true"){
            $(".listArea").show();
            setCookie("tsmn", true, 30, "/") ;
        }else{
            $(".listArea").hide();
            setCookie("tsmn", false, 30, "/") ;
        }
    }
});
function catReady(){
    var $kids = $("#categoryList ").children();
    if($kids.length==0){
        $("#categoryList ").remove();
        $(".squeeze").remove();
        $(".listTitle").css("border", "none");
    }
}