jQuery.noConflict();
var j$ = jQuery;
j$(function() {
	j$(document).ready(function() {
    	var max = 0;
    	j$(".top-box dl").each(function(){
    		j$(this).css("height",'');
    	   	if (j$(this).height() > max)
       		max = j$(this).height();
    	});
    	j$(".top-box dl").css("height",max);
	});
j$(window).resize(function() {
    	var max = 0;
    	j$(".top-box dl").each(function(){
    		j$(this).css("height",'');
    	   	if (j$(this).height() > max)
       		max = j$(this).height();
    	});
    	j$(".top-box dl").css("height",max);
	});
});

