	(function ($) {
		// VERTICALLY ALIGN FUNCTION
		$.fn.vAlign = function() {
			return this.each(function(i){
				var ah = $(this).height();
				var ph = $(this).parent().height();
				if (ah>40) {//Avoid as yet unidentified IE6 bug
					var mh = ($(this).parent().height() - $(this).height()) / 2;
					$(this).css('padding-top', mh);
				}
			});
		};
	})(jQuery);

