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

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