$(document).ready(function(){					   
		var eachCase = '.subcolumns'; // for each lines/paragraphs
		var element  = '.contentpaneopen'; // element within lines/paragraphs
		
		if (eCase = $(eachCase)) {
			$(eCase).each(function() {
				var el = $(this).find(element);
				
				// Debug
				//el.css('backgroundColor','#0ff');
				
				el.syncHeight();
				  $(window).resize(function(){ 
				    el.syncHeight();
				  });
				  
			});
		}

//$('.subcolumns > div .contentpaneopen').syncHeight( {eachCase: ".subcolumns"} );
//  $(window).resize(function(){ 
//    $('.subcolumns > div .contentpaneopen').syncHeight( {eachCase: ".subcolumns"} );
//  });
});