^
Sorry, it was a bad typing mistake, I meant to type $ but hit the # by accident...
Also, I figured out the issue, I had to use "event.stopPropagation();":
$(".lnk").click(function(event){
event.stopPropagation();
$("#divClick").css("display","none");
$("#aClick").css("display","block")...