 
 /** skript pro posunuti menu **/
 $(document).ready(function(){
 		$(function() {
			$('a[rel="lightbox"]').lightBox();
		});
		$(".jazyky").click(function () {
			$(".toggle").hide();
			$("#jazyky").show();
            $(".jazyky_th").css('background-color','#666666');
            $(".obory_th").css('background-color','#999999');
            $(".typyTextu_th").css('background-color','#999999');
            $(".formatySouboru_th").css('background-color','#999999');
            $(".cat_th").css('background-color','#999999');
		});
		$(".obory").click(function () {
			$(".toggle").hide();
			$("#obory").show();
            $(".jazyky_th").css('background-color','#999999');
            $(".obory_th").css('background-color','#666666');
            $(".typyTextu_th").css('background-color','#999999');
            $(".formatySouboru_th").css('background-color','#999999');
            $(".cat_th").css('background-color','#999999');
		});
		$(".typyTextu").click(function () {
			$(".toggle").hide();
			$("#typyTextu").show();
            $(".jazyky_th").css('background-color','#999999');
            $(".obory_th").css('background-color','#999999');
            $(".typyTextu_th").css('background-color','#666666');
            $(".formatySouboru_th").css('background-color','#999999');
            $(".cat_th").css('background-color','#999999');
		});
		$(".formatySouboru").click(function () {
			$(".toggle").hide();
			$("#formatySouboru").show();
            $(".jazyky_th").css('background-color','#999999');
            $(".obory_th").css('background-color','#999999');
            $(".typyTextu_th").css('background-color','#999999');
            $(".formatySouboru_th").css('background-color','#666666');
            $(".cat_th").css('background-color','#999999');
		});	
		$(".cat").click(function () {
			$(".toggle").hide();
			$("#cat").show();
            $(".jazyky_th").css('background-color','#999999');
            $(".obory_th").css('background-color','#999999');
            $(".typyTextu_th").css('background-color','#999999');
            $(".formatySouboru_th").css('background-color','#999999');
            $(".cat_th").css('background-color','#666666');
		});					
  }); 
