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