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