function separateColumns()
{
	var fullHeight = jQuery("#col1").height();
	var currentHeight = jQuery("#col2").height();
	var half = fullHeight/2;
	
	var children = jQuery("#col1").children();
	
	var i;
	for ( 	i = 0;  currentHeight < half  && i < children.length; i ++ )
	{
	    currentHeight += jQuery(children[i]).height();
	}
	
	jQuery("#col1").html =("");
	
	for ( var j = 0; j < children.length ; j ++ )
	{
	  if ( j < i )
	  {
	    jQuery("#col1").append(children[j]);
	  }
	  else
	  {
	    jQuery("#col2").append(children[j]);

	  }
	    
	}
	
	
}

jQuery(document).bind('ready', separateColumns);
