function resizeme() {
	if($('con')) {
		//alert($('conp2').getHeight());
		//conl1 68; conl2 220; conl3 100; conl4 26; conl5 217
		var suma = $('conl1').getHeight() + $('conl2').getHeight() + $('conl3').getHeight() + $('conl4').getHeight() + $('conl5').getHeight();
		if(suma < $('conp2').getHeight()) {
			var res = $('conp2').getHeight() - suma + 70;
			$('conl6').setStyles({'height': res});
		} else {
			$('conl6').setStyles({'height': 0});
		}
	}
}

