var maxheight=$('#content').height();
var temp=$('#sidebar').height();
if(temp>maxheight){
	maxheight=temp;
	$("#content").css('height',maxheight);
}
$("#sidebar").css('height',maxheight);
