Éste sería el código completo?
Código:
$(document).ready(function(){
$(".selector").click(function(){
var id = $(this).attr("id");
$("."+id).show();
});
var id = $(this).attr("id");
if ($("."+id).css("display") == "none")
$("."+id).show();
else
$("."+id).hide();
});
Esque así no me funciona...algo habré puesto mal