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

$(document).ready(function(){
	
	$("div.bigmenu").delay(2000).css("display", "block");	
	
	$("a.mailinglink").click(function() {
		$("div#poppyform").fadeIn("slow").center();
		$("div#innerpoppyform").fadeIn("slow").center();
	});
	
	$("div.poppyheadclose").click(function(){
		$("div#poppyform").fadeOut("slow");
		$("div#innerpoppyform").fadeOut("slow");
	});
	
});
