$(document).ready(function(){
	if(document.all) { //This means it is IE
		if($j('#frame_content').length != 0){
			var first_column = parseInt(document.getElementById('main').offsetHeight);
			var second_column = parseInt(document.getElementById('aside').offsetHeight);                                       
			var maxheight = (first_column>second_column)?first_column:second_column;
                        var maxheight1 = maxheight + 130 + 'px';
                        maxheight = maxheight + 150 + 'px';
			$j('#main').css('height',maxheight);
			$j('#aside').css('height',maxheight1);
                        $j('#frame_content').css('height',maxheight);                        
		}
	}else if($j('#frame_content').length != 0){
		first_column = parseInt($j('#main').css('height'));
		second_column = parseInt($j('#aside').css('height'));                        
		maxheight = (first_column>second_column)?first_column:second_column;
		maxheight1 = maxheight + 130 + 'px';
		maxheight = maxheight + 150 + 'px';
		$j('#main').css('height',maxheight);
		$j('#aside').css('height',maxheight1);
		$j('#frame_content').css('height',maxheight);                        
	}
});

