// JavaScript Document
$(document).ready(function(){
/*		var biggest = 0; height1 =0; height2 =0; height3 =0;				   
		 height1	= $('#main-content').css('height');
		alert(height1);
		height2	= $('#').css('height');
		alert(height2);
		height3	= $('#toolbox-right').css('height');
		alert(height3);
		
		biggest = Math.max(height1, height2, height3);
		alert(biggest);*/
        //alert('running');
		
		var highestCol = Math.max($('#main-content').height(),$('#aleft').height(),$('#toolbox-right').height() ); 
				//alert(highestCol);

		   $('#aleft').height(highestCol + 10);
//$('.elements').height(highestCol);

});
