$(function(){	$('a.popup').each(function(){		$(this).click(function(){			var popup = $(this).attr('href');			$(popup).lightbox_me({				centered:true			});			return false;		});	});	});
