var speed = 500;
var header = 0;

$(window).scroll(function(){
    if($(document).scrollTop() > 0) {
	
		if(header == 0) {
			
           header = 1;
            $('#header-inner').stop().animate({ marginTop:'0px' }, speed);
			$('#header').stop().animate({backgroundColor:'rgba(255,255,255)'}, speed);
			
        }
		
    } else {
        
		if(header == 1) {
			
           header = 0;
            $('#header-inner').stop().animate({ marginTop:'0px' },speed);
			$('#header').stop().animate({backgroundColor:'rgba(255,255,255,0.9)'}, speed);
			
        }  
    }
});


$(window).load(function () {

	    

$('*[data-button]').click(function() {
    $('html, body').animate({
        scrollTop: $('*[data-section="'+$(this).attr('data-button')+'"]').offset().top
    }, speed);
});



function resize(){
	
    $('.tab').height(window.innerHeight);

	$('.tab-headline').each(function(index, element) {
	
	$(this).css('margin-left',-$(this).width()/2);
	$(this).css('margin-top',-$(this).height()/2);	
	
	});	
	
	}


$( window ).resize(function() {
//resize();
});



resize();

});