//var maxHeight = function(classname) {
//var divs = document.getElements('div.' + classname);
//var max = 0;
//divs.each(function(div) {
//	max = Math.max(max, div.getSize().size.y);
//});
//divs.setStyle('height', max);
//return max;
//}
//window.addEvent('load', function() {
//maxHeight('euqal');
//maxHeight.delay(500, maxHeight, 'equal');
//}); 

function cleararea(id)
{
  //alert(jQuery('#'+id).css("color"));
  if(jQuery('#'+id).css("color")!='black')
  {
    jQuery('#'+id).html("");
    jQuery('#'+id).attr("style","color:black;");
  }

}
