$(document).ready(function(){
	$('.teaserKapitel1, .teaserKapitel2, .teaserKapitel3, .teaserKapitel4').click(function(){
		var id = $(this).attr('id');
		xclass = id.substring(0, 14);
		xc_id = id.substring(14, 17);
		id = id.substring(17);
		$('.divteaserKapitel'+xc_id).hide();
		$('#divteaserKapitel'+xc_id+id).show();
		$('.t'+xc_id).removeClass(xclass+'_hover');
		$('.t'+xc_id).removeClass('.t'+xc_id);
		$(this).addClass(xclass+'_hover');
		$(this).addClass('t'+xc_id);
	});
});
