$jQuery(document).ready(function(){
	$jQuery(".region-fade").click(function(){
		if ($jQuery("#ortho_region").css("display") == 'block') {
			$jQuery("#ortho_region").fadeOut("slow");
		} else {
			if ($jQuery("#ortho_newsletter").css("display") == 'block') {
				$jQuery("#ortho_newsletter").fadeOut("slow", function() {
					$jQuery("#ortho_region").fadeIn("slow");
				});
			} else {
				$jQuery("#ortho_region").fadeIn("slow");
			}
		}
	});
	
	$jQuery(".newsletter-fade").click(function() {
		if ($jQuery("#ortho_newsletter").css("display") == "block") {
			$jQuery("#ortho_newsletter").fadeOut("slow");
		} else {
			if ($jQuery("#ortho_region").css("display") == 'block') {
				$jQuery("#ortho_region").fadeOut("slow", function() {
					$jQuery("#ortho_newsletter").fadeIn("slow");
				});
			} else {
				$jQuery("#ortho_newsletter").fadeIn("slow");
			}
		}
	});
});
