$(document).ready(function() {
	ch = $("#content").height();
	mh = $("#main").height();
	
	if(ch <= mh) {
		$("#content").height(mh + 80);
	}
		
//Produkttipp
var maxtext = 420;
var url = "index.php?id=12";
var orgtext;
var newtext;
	if($("#tipp").text().length >= maxtext) {
		orgtext = $("#tipp").html();
		newtext = $("#tipp").html().slice(0, maxtext);
		$("#tipp").empty();
		$("#tipp").append(newtext +"... <b><a class='more' href='"+ url +"'>[mehr]</a></b>");
	}
});
