$(function() {              
	$("tr").hover(function() {
		$(this).addClass("bg-h");
	}, function() {
		$(this).removeClass("bg-h");;
	}); 
             
	$("#navigace li span").hover(function() {
		$(this).addClass("hover");
	}, function() {
		$(this).removeClass("hover");;
	});
	$( '#youtube' ).scrollFollow( {
   		container: 'text-pisne',
   		offset: 60
  } );

});
 