$(function() {

$('a[rel=lightbox]').click(function(event) {
	event.preventDefault();

	var href = $(this).attr('href');
	$('#iframe_newsletter').attr('src', href);
	$('#iframe_newsletter2').attr('src', href);
	
	$('#lightbox_overlay').fadeIn();
})

/*
$('#lightbox_overlay').click(function() {
	$(this).fadeOut();
});
*/

$('#lightbox_overlay, #newsletters_close a').click(function() {
	$('#lightbox_overlay').fadeOut('fast');
	return false;
});

})
