$(document).ready(function(){


    // nastaveni textu pro odkazy
    var showText="zobrazit vyhledávání";
    var hideText="skrýt vyhledávání";

    $('a.skryvaciodkaz').html(hideText);

    // na odkazy navaze funkci
    $('a.skryvaciodkaz').click(function() {

      if ($(this).html()==showText) { // zobrazit
        $(this).html(hideText);
        $('.skryvaci').slideDown('fast');
        $('#products_filter_title').css('border-bottom', '1px solid #afb3bf');
      } else { // skryt
        $(this).html(showText);
        $('.skryvaci').slideUp('fast');
        $('#products_filter_title').css('border', '0px');
      }
      return false; // odkazy nikam nevedou
    });



    $("ul#menu_ul li a").hover(function() {

        $(this).parent().find(".submenu").fadeIn('fast').show();

        $(this).parent().hover(function() {
        }, function(){
            $(this).parent().find(".submenu").fadeOut('fast');
        });
    });



	$("#slider").easySlider({

		controlsShow:false,
		controlsFade:false,
		speed:400,

		auto:true,
		continuous:true



	});
/*
	$(function() {
		$("#select_range").slider({
			range: true,
			min: 0,
			max: 10000,
			values: [0, 10000],
			slide: function(event, ui) {
				$("#price_from").html(ui.values[0] + ' Kč');
				$("#price_to").html(ui.values[1] + ' Kč');
			}
		});
		$("#price_from").html($("#select_range").slider("values", 0) + ' Kč');
		$("#price_to").html($("#select_range").slider("values", 1) + ' Kč');
	});
        */


});

