function showSub(entry){

	$.get("impressionen.php",{entry:entry}, function(data){
		$('#impressionen').html(data);
		setMouseOver();
	});
	$('#titelname').load("getTitel.php?entry="+entry);
}

function alertMe(ptText){
	alert(ptText);
}

