$(function() {
	$('ul.nav a').bind('click',function(event){
		var $anchor = $(this);

		
		
		$('html, body').stop().animate({
			scrollTop: $($anchor.attr('href')).offset().top
		}, 1000);
		
		event.preventDefault();
	});
	$('.top a').bind('click',function(event){
		var $anchor = $(this);

		
		
		$('html, body').stop().animate({
			scrollTop: $($anchor.attr('href')).offset().top
		}, 1000);
		
		event.preventDefault();
	});
    jQuery(".diaporama").diaporama({
        animationSpeed: "slow",
        delay:4
    });
});
