$(document).ready(function() {
	$(".unternehmens-text").each(function(i){
		if ($(this).html() == ''){
			$(this).css("height","30px");
		}
	});
});

function printThis(){
	url = window.location.href;
	if ( url.indexOf('.html') > 0 ){
		url = url.replace('.html','/print.html');
	} else {
		if (url.indexOf('#') > 0){
			url = url.replace('#','print.html');
		} else {
			url = url+'print.html';
		}
	}
	window.open(url,'Druckansicht','width=990 ,height=700,menubar=yes,scrollbars=yes,resizable=yes'); 
	
	return false;
}

