$(document).ready(function() {


	$("#slider").easySlider({

		controlsShow:false,
		controlsFade:false,
		speed:400,

		auto:true,
		continuous:true



	});


  //hover efekt
  $("#menu ul li").hover(
    function () {
      $(this).stopTime("top_basket_content_sub_up");
      $(this).oneTime(300, "top_basket_content_sub_down", function() {
      $(this).find(".submenu").fadeIn('middle').show();
    });
  },
    function() {
      $(this).stopTime("top_basket_content_sub_down");
      $(this).oneTime(400, "top_basket_content_sub_up", function() {
      $(this).find(".submenu").fadeOut('middle');
    });
  });

  $('#search_input').click(function() {
   if ($('#search_input').val() == 'Hledaný výraz') $('#search_input').val('');
  })

  $('#search_input').blur(function() {
   if ($('#search_input').val() == '') $('#search_input').val('Hledaný výraz');
  })
 
    
});
