/*
 *
 *	vertical-center.js file that handles the vertical centering.
 *
 */

jQuery.fn.vcenter = function () {
    _TOP = (($(window).height() - this.outerHeight()) / 2) + $(window).scrollTop();
    _TOP = (_TOP <= 0) ? 0 : _TOP;
    this.css("top", _TOP + "px");
    return this;
}

$(function() {
  $(".wrapper").vcenter();
  $(window).bind('resize', function() {
    $(".wrapper").vcenter();
  });
});
