var $j = jQuery.noConflict();

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