function cutTitle (title) {
	var max = 40;
	if (title.length > max) {
		title = title.substring(0, max);
		title += "...";
	}
	return title;
}