$(document).ready( function() {
    $(".lm_SingleCatRow").click(function () {
	var thisId=$(this).attr('id');
	thisId=thisId.replace(/\ /g,"");
	thisId=thisId.replace("mainCat","");
	$("#subCats" + thisId).toggle();
    });
});