$(document).ready(function() {  


$(window).scroll(function(e){ 
  $el = $('#kategori'); 
  
  
  
  if($el.height()<$(window).height()){
  
  		if ($(this).scrollTop() > 200 && $el.css('position') != 'fixed'){ 
    		$('#kategori').css({'position': 'fixed', 'top': '10px'}); 
  		} 
  
  		if ($(this).scrollTop() < 200 && $el.css('position') == 'fixed'){
    		$('#kategori').css({'position': 'relative', 'top': '0'});
		}
  }
});

});
