jQuery.noConflict();
(function($){

$.fn.equalHeights = function(add) {
	var tallest = 0;
	$(this).each(function(){
		if ($(this).outerHeight() > tallest) tallest = $(this).outerHeight();
	});
	$(this).each(function(){
		var t = $(this), p = 0;
		$.each(['borderTopWidth', 'paddingTop', 'paddingBottom', 'borderBottomWidth'], function(i, n){
			p += parseInt(t.css(n));
		})
		var h = tallest - p;
		for (var i in add)
			if (this.id == i)
				h += add[i];
		if ($.browser.msie && $.browser.version == 6.0) 
			t.css({'height': h});
		t.css({'min-height': h}); 
	});
	return this;
};

$(document).ready(function(){

	$('#brighton_col2, #brighton_col3').equalHeights();

	if ($.browser.msie) {
		try {document.execCommand("BackgroundImageCache", false, true);} catch(err){};
		if (typeof(DD_belatedPNG) != 'undefined')
		{
			DD_belatedPNG.fix('');
		}
	}

});

})(jQuery);