$(document).ready(function(){
	
	$('a.fancy').fancybox({
		'titlePosition'		: 'inside',
		'overlayColor'		: '#000',
		'overlayOpacity'	: 0.8
	});	
	
	//scrolltop
	$('footer .logo, #auffi').click(function(e){
		$('html, body').animate({scrollTop:0}, 'slow');
		e.preventDefault();
	});
	
});























