$(document).ready(function(){

	// omezeni pro mobilni prohlizece
	if ( $('#main').width() > 500 )
	{

		// skryti popisku menu
		$('.box3 p').hide();

		// slideshow na uvodni strance
		$('#indeco').slidy({ animation: 'fade', height: 235, width: 270, time: 2000 });
	
		// prohlizec obrazku
		$("a[rel='gallery']").colorbox();
	
		// vylepseni tabulek
		$("tr").mouseover(function(){$(this).addClass("tabhover");}).mouseout(function(){$(this).removeClass("tabhover");});
		$("tr:even").addClass("whiteg");
	
		// horni navigace
		$('#navigation').hover(
			function() { $(this).stop().animate({ 'margin-top': -40 }, 250); },
			function() { $(this).stop().animate({ 'margin-top': -75 }, 250); }
		);
	
		// aktivni menu
		$('.active').css({ opacity: 0.5 });
	
		// zakazy
		$('.beware img').css({ opacity: 0.4 }).hover(
			function() { $(this).stop().animate({ opacity: 1 }, 100); },
			function() { $(this).stop().animate({ opacity: 0.4 }, 100); }
		);

	}

});
