
$(function() {
	
	$(".mountain").click(function() {
		window.location.href = "http://www.ac-alpina.ch/layout.php";
	});
	
	screenHeight = $(document).height() - 60;
	
	$(".mountain").css({
		height: screenHeight+"px"
	});

	function getIdByName(name) {
		name = name.split("_");
		anzahl = name.length;
		anzahl--;
		return name[anzahl];
	}


	$(".te_hover").hover(function() {
		initials = getIdByName($(this).attr('id'));
		$(".cvpanel").hide();
		$(".te_hover").removeClass("te_hoverfirst");
		$("#CV_"+initials).show();
		$(this).addClass("te_hoverfirst");
	}, function() {
		//
	});
	
	
});

