function showNewsletterSignUpForm(){
	
	// Prevent jQuery from conflicting with other libraries that might be used by Lyra
	jQuery.noConflict();
	
	jQuery("body").append("<div id='dim'>&nbsp;</div>");
	jQuery("#dim").css("height",jQuery(document).height());
	jQuery("#dim").css("width",jQuery(document).width());
	jQuery("#dim").fadeIn("fast");
	
	jQuery("#dim").click(function(){
		hideNewsletterSignUpForm();
	});
	
	jQuery("body").append("<form id='newsletter_form' name='ccoptin' action='http://visitor.constantcontact.com/d.jsp' target='_blank' method='post'></form>");	
	jQuery("#newsletter_form").append("<input type='text' id='newsletter_form_text_input' name='ea' />");
	jQuery("#newsletter_form").append("<input type='submit' id='newsletter_form_submit' name='go' value='GO' />");
	jQuery("#newsletter_form").append("<input type='hidden' name='m' value='1101562274756'>");
	jQuery("#newsletter_form").append("<input type='hidden' name='p' value='oi'>");
	jQuery("#newsletter_form").css('top',jQuery(document).height()-400);
	jQuery("#newsletter_form").fadeIn("fast");
}

function hideNewsletterSignUpForm(){
	jQuery("#dim").remove();
	jQuery("#newsletter_form").remove();
}