$(document).ready(function(){
	$('body').append('<div id="userPayment"><div class="userPaymentClose">Close X</div><div class="userPaymentContent"></div></div><!-- options selector -->');
	$('#userPayment').hide();
	$('.userPaymentClose').click(function(){ $('#userPayment').fadeOut(300); });
});


function showOptions(page) {
	switch(page) {
		case 'email':
			var url = 'join-enewsletter';
			var height = 300;
			var iHeight = 300;
		break;
	}
	var scrollPos = $(window).scrollTop();
	var optionsHeight = height/2;
	
	$('#userPayment').css({'margin-top': (scrollPos - optionsHeight), 'height': height});
	$('.userPaymentContent').empty().append('<iframe width="560" height="'+iHeight+'" frameborder="0" src="'+url+'" style="border:0;background:#fff;"></iframe>');
	$('#userPayment').fadeIn(300);
	
	return false;
}

function debug(data) {
}
