$(document).ready(function(){
	$(".show").click(function(e){
		$($(this).attr("href")).slideDown("slow");
		$('html, body').animate({scrollTop:0}, 'slow');
		e.preventDefault();
	});

	$("a.fancyprofil").fancybox({
		'centerOnScroll': true,
		'padding': '0',
		'height': '400',
		'width': '450',
		autoDimensions: false
	});
});
