$(document).ready(function () {

	//Append a div with hover class to all the LI
	$('#menu li').append('<div class="hover"><\/div>');


	$('#menu li').hover(
		
		//Mouseover, fadeIn the hidden hover class	
		function() {
			
			$(this).children('div').stop('true', 'true').fadeIn('fast');	
		
		}, 
	
		//Mouseout, fadeOut the hover class
		function() {
		
			$(this).children('div').stop('true', 'true').fadeOut('fast');	
		
	}).click (function () {
	
		//Add selected class if user clicked on it
		$(this).addClass('selected');
		
	});
	
	
	
	
		//Append a div with hover class
	$('.button').append('<div class="hover"><\/div>');


	$('.button').hover(
		
		//Mouseover, fadeIn the hidden hover class	
		function() {
			
			$(this).children('div').stop('true', 'true').fadeIn('fast');	
		
		}, 
	
		//Mouseout, fadeOut the hover class
		function() {
			
			$(this).children('div').stop('true', 'true').fadeOut('fast');	
		
	}).click (function () {
	
		//Add selected class if user clicked on it
		$(this).addClass('selected');
		
	});
	

	// Zastaveni presouvani slideru po najeti mysi ----------Marek------------
	$('#slide-runner').mouseover(function(){
		window.najeto=true;
      		window.clearTimeout(slider.al);
  	}).mouseout(function(){
		window.najeto=false;
    		slider.al=window.setTimeout('slider.auto();',6000);
 	});
	
	
});