function openLightbox(aContent){
	jQuery(".gray_overlay").show();
	jQuery(aContent).show();
	jQuery("#terms_and_privacy").fadeIn();
}

function closeLightbox(){
	jQuery(".gray_overlay").hide();
	jQuery(".terms_and_privacy_content").hide();
	jQuery("#terms_and_privacy").fadeOut();
}

jQuery(document).ready(function(){
	jQuery(".gray_overlay").click(function(){
		closeLightbox();
	});
	jQuery(".privacy_anchor").click(function(){
		openLightbox("#footer_privacy_policy");
	});
	jQuery(".terms_anchor").click(function(){
		openLightbox("#footer_terms_of_use");
	});
	jQuery("#terms_and_privacy_close").click(function(){
		closeLightbox();
	});
});
