(function ($) {
	$.fn.vAlign = function() {
		return this.each(function(i){
			var h = $(this).height();
			var ph = $(this).parent().height();
			var mt = ((ph - h)) / 2;	
			$(this).css("margin-top",  + mt + "px");
		});	
	};
})(jQuery);
