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 = (ph - ah - 23) / 2;
	$j(this).css('margin-top', mh);
	});
};
})(jQuery);

function equalHeight(){
	var box1H = $j(".leftBoxBottom").height();
	var box2H = $j(".rightBoxBottom").height();
	if( box1H > box2H) { $j(".rightBoxBottom").height(box1H);}
	else { $j(".leftBoxBottom").height(box2H);}
}

$j(document).ready(equalHeight);
