jQuery(function($) {
	// IE6 ONLY
	$('#content .td').equalCols();
});

jQuery.fn.equalCols = function(){
	var heights = [];
	$(this).each(function(){
		heights.push($(this).height());
	});
	var maxHeight = heights.sort(function(a,b){return b - a;})[0];
	return this.each(function(){
		$(this).css({'height': maxHeight});
	});
};
jQuery.fn.exists = function(){return jQuery(this).length>0;}



//document ready
$(document).ready(function() {	
	
	if ($(".email").exists()) {
		var content = $(".email");
		content.load("email_address.html");
	}
//end document ready
});
console.log(document.getElementsByTagName('*').length+" number of dom elements. Try to keep it under 700");
