window.addEvent('domready', function() {
if($('contentBox') != null || $('contentBox') != 'undefined' || !$('contentBox')) {
	var children = $('contentBox').getChildren();
	var count = children.length;
	
//	console.log(count);
	i = 1;
	for (var div in children) {
	//console.log(children[div]);
		Class = children[div].hasClass('start_content');	
//console.log(Class);
		if(Class == true) {
			
			HTML = children[div].innerHTML;
			if(HTML == '<!--TYPO3SEARCH_begin--><!--TYPO3SEARCH_end-->') {
				children[div].setStyle('display', 'none');	
			}
			else if(HTML == '') {
				children[div].setStyle('display', 'none');	
			}
			
//			console.log(HTML);
		}

//		console.log(i);
		if(i >= count) {
			break;	
		}
		i++;

	}
}
//	console.log(children);

});
