I'm not at all sure what you are trying to do. There wasn't even an element with the ID "pop0" in your example, but I added it and hid it by default with $("#pop0").hide();
:
http://jsfiddle.net/kjTBG/16/
HTML:
JS:
$("#pop0").hide(); // Initially hide #pop0 so it isn't visible.
$(".pop").bind('click', function(){
$('.pop').show();
$(this).hide();
})
Please elaborate on what you are trying to do. Rephrase your question and use whole sentences please. Try to describe it more abstractly if that helps.