
	(function ($) {
	// VERTICALLY ALIGN FUNCTION
	$.fn.bodyValign = function() {
		element_height = $(this).height();
		body_height    = $(window).height();
		$(this).css('margin-top', ((body_height - element_height) / 2));
	};
	})(jQuery);
