$(function () {
$("div.contentin ul li").click(function () {
if ($(this).hasClass("curselected"))
$(this).removeClass("curselected");
else {
if ($(this).find("div.nummark").length == 0) {
$(this).addClass("curselected");
}
}
});
});
$("li").click(function(){
var thisClass = $(this).attr("class");
var hasDiv = false;
$(this).children().each(function(){
if($(this).attr("class")=="nummarked")
hasDiv == true;
});
if (thisClass!=="curselected" && hasDiv) {
$(this).attr("class", "curselected");
} else {
$(this).attr("class", "");
}
});
$("li").click(function(){
if(!$(this).hasClass("curselected") && $(this).find(".nummarked").length==0){
$(this).addClass("curselected");
}
else if($(this).hasClass("curselected")){
$(this).removeClass("curselected");
}
});