$(document).ready(function() {
	$("#h-news-list").newsticker();
	
	
});



function openPopup() {
	function showPop() {
		$("#popup").fadeIn("fast");
		}
	
	$("#curtain").fadeIn("slow",showPop);
	}
	
function closePopup() {
	function hidePop() {
		$("#curtain").fadeOut("slow");
		}
	$("#popup").fadeOut("fast",hidePop);
	}

