$.fn.fauxcolumnheights = function (){
	
	var sheight = 0;
	this.each(function(){
		if( $(this).height() > sheight)
		{
			sheight = $(this).height();
		}
	});
	
	return this.each(function(){
		$(this).css({height : sheight+'px'});				   
	});
}

$(document).ready(function(){

	//alert('hi');
	//$('#home-page .item h2').fauxcolumnheights();
	$('#home-page .item p:not([class=link])').fauxcolumnheights();
	
	$('a.button').each(function(){
		var text = $(this).html();
		$(this).html( '<span>'+text+'</span>'  );								
	});

});

$(window).load(function(){

	//alert('hi');
	$('#home-page .item h2').fauxcolumnheights();
	//$('#home-page .item p:not([class=link])').fauxcolumnheights();

});

