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