Cufon.replace('.left-column li span');
Cufon.replace('.left-column li h3');
Cufon.replace('.middle h3');
Cufon.replace('.middle h4');
Cufon.replace('.middle h5 strong');
Cufon.replace('.middle h5 span');


jQuery(document).ready(function(){
	
	
	var col1 = $('.eq-cols .left-column');
	var col2 = $('.eq-cols .middle .frame');
	var col3 = $('.eq-cols .right-column .frame');
	
	var col1_offset = 49;
	var max_h = col1.outerHeight() + col1_offset;
	
	if(col2.outerHeight() > max_h) { max_h = col2.outerHeight(); }
	if(col3.outerHeight() > max_h) { max_h = col3.outerHeight(); }
	
	max_h += 30;	
	
	//console.log(col2.outerHeight());
	
	col1.css('height', (max_h + col1_offset) + 'px');
	col2.css('height', max_h + 'px');
	col3.css('height', max_h + 'px');
	
	col1.find('li:last').addClass('last');
	
	
});

