$(function(){	
	$(window).scroll(function (event) {
    	var top = $(window).scrollTop();
	    if( top > 200 ){
	    	$('header').addClass('stuck-to-top');				 			
	    } else {
	    	$('header').removeClass('stuck-to-top');
	    }
	});
});