$(function () {
$('body').click(function() {
$('div.popup'). hide();
$('#overlay').remove('#overlay');});
$('a.show_popup').click(function () {
$('div.'+$(this).attr("rel")).fadeIn(500);
$("body").append("<div id='overlay'></div>");
$('#overlay').show().css({'filter' : 'alpha(opacity=80)'});
return false;
});
$('a.show_popup').click(function (event) {
event.stopPropagation();
$(this).parent().fadeOut(100);
$('#overlay').remove('#overlay');
return false;
});};