$(function () {
$('a.show_popup').click(function (e) {
e.preventDefault();
var date = $(this).attr('date');
$('.popup reg_form p').text(date);
$('div.'+$(this).attr("rel")).fadeIn(500);
$("body").append("<div id='overlay'></div>");
$('#overlay').show().css({'filter' : 'alpha(opacity=80)'});
});
});