(function ($) {
	// VERTICALLY ALIGN FUNCTION
	$.fn.vAlign = function() {
	var decal = 0;
			
	  return this.each(function(i){
	  var ah = $(this).height();
	  var ph = $(window).height();
	  var mh = (ph - ah) / 2;
	  if(mh>decal) {
		$(this).css('margin-top', mh-decal);
	  } else {
		$(this).css('margin-top', 0);
	  }
	});
	};
})(jQuery);
