jQuery.fn.equalHeight = function () {
	var height		= 0;
	var maxHeight	= 0;

	this.each(function () {
		height		= $(this).outerHeight();
		maxHeight	= (height > maxHeight) ? height : maxHeight;
	});

	return this.each(function () {
		var t			= $(this);
		var minHeight	= maxHeight - (t.outerHeight() - t.height());
		var property	= jQuery.browser.msie && jQuery.browser.version < 7 ? 'height' : 'min-height';

		t.css(property, minHeight + 'px');
	});
};

$(document).ready(function() { 

	var highestCol = Math.max($('#boxStartLeft').height(),$('#boxStartCenter').height(),$('#boxStartRight').height());
	$('#boxStartLeft').height(highestCol);
	$('#boxStartCenter').height(highestCol);
	$('#boxStartRight').height(highestCol);
	
	var highestCol = Math.max($('.albumBox').height());
	$('.albumBox').height(highestCol);

	$("#contactform").validate();

});  
