





$( document ).ready( function ()
{
$( '#navigation' ).scrollFollow(
{
speed: 1000,
offset: 20,
killSwitch: 'exampleLink',
onText: 'Disable Follow',
offText: 'Enable Follow'
}
);
}
);

$ (function() {
	
$ ('#header').click (function() {
$ (this). animate ({"top" : "0px"}, 1000);
});

$ ('#neuigkeiten').click (function() {
$ (this). animate ({"top" : "0px"}, 1000);
});

$ ('#vita').click (function() {
$ (this). animate ({"top" : "0px"}, 1000);
});

$ ('#skills').click (function() {
$ (this). animate ({"top" : "0px"}, 1000);
}); 

$ ('#fotos').click (function() {
$ (this). animate ({"top" : "0px"}, 1000);
});

$ ('#showreel').click (function() {
$ (this). animate ({"top" : "0px"}, 1000);
});

$ ('#download').click (function() {
$ (this). animate ({"top" : "0px"}, 1000);
});  

$ ('#kontakt').click (function() {
$ (this). animate ({"top" : "0px"}, 1000);
}); 



//
//
//$('.slide_nachoben').click(function(){
//$('html, body').animate({
//scrollTop: $(".nachoben").offset().top
//}, 1500);				   
//
//                            
//});


$('.slide_header').click(function(){
$('html, body').animate({
scrollTop: $(".header").offset().top
},2000);

                            
});

$('.slide_neuigkeiten').click(function(){
$('html, body').animate({
scrollTop: $(".neuigkeiten").offset().top
},2000);

                            
});



$('.slide_vita').click(function(){
$('html, body').animate({
scrollTop: $(".vita").offset().top
}, 2000);				   

                            
});

$('.slide_skills').click(function(){
$('html, body').animate({
scrollTop: $(".skills").offset().top
}, 2000);				   


});

$('.slide_fotos').click(function(){
$('html, body').animate({
scrollTop: $(".fotos").offset().top
}, 2000);				   


});
        
$('.slide_showreel').click(function(){
$('html, body').animate({
scrollTop: $(".showreel").offset().top
}, 2000);				   
});
   



$('.slide_download').click(function(){
$('html, body').animate({
scrollTop: $(".download").offset().top
}, 2000);				   
});



$('.slide_kontakt').click(function(){
$('html, body').animate({
scrollTop: $(".kontakt").offset().top
}, 2000);				   
});

});
