$(document).ready( function()
{
	$("#overlay").click(function(){ popup_close(); })
	$(".close").click(function(){ popup_close(); })
});
function popup_close()
{
	$("#overlay").fadeOut(400);
	$(".popup_news").fadeOut(200);
}


jQuery.fn.center = function () 
{
    this.css("position","absolute");
    this.css("top", ( $(window).height() - this.height() ) / 2+$(window).scrollTop() + "px");
    this.css("left", ( $(window).width() - this.width() ) / 2+$(window).scrollLeft() + "px");
    return this;
}
