$(document).ready(function(){


    $("#application-error").hide();
  
    $("#show-error").click(function (){
        $("#application-error").toggle("slow");
								   
    });
 

 $(".searchbox").focus(function (){
		if ($(".searchbox").attr( "value" ) == "hledat.." ) {


			$(".searchbox").attr( "value", "");
			}

	});

	$(".searchbox").blur(function (){
		if ($(".searchbox").attr( "value" ) == null || $(".searchbox").attr( "value" ) == "" || $(".searchbox").attr( "value" ) == " " ) {
			$(".searchbox").attr( "value", "hledat..");

			//alert($(".searchbox").attr( "value"));
			}

	}); 

Shadowbox.init();

});



