$(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");
}
}
});
});
$(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");
}
}
});
});