// -------- start of jQuery document.ready() ---------- //
  
$(document).ready(function(){				   
	
	// OBSLUHA PRO HLAVNI MENU //
	$('#hl_menu li').hover(function() {   
      $(this).addClass('hover');   
    }, function() {   
      $(this).removeClass('hover');   
    });
	
	// OBSLUHA PRO FORMULAR //
	$("#but_odeslat").mouseover(function () {
    	$(this).addClass("but_odeslat_hover");
	});

  	$("#but_odeslat").mouseout(function () {
    	$(this).removeClass("but_odeslat_hover");
	});

	
 });




      
     

