$(function() {
    $('.panel_tool_tip').tooltip({
	    track: true,
	    delay: 0,
	    showURL: false,
	    showBody: " - ",
	    opacity: 0.9
    });	 	
    $('.panel_tool_tip img').attr('alt','');
});

$(function() {
    if ($('.form-error').length) {
        $('.form-error a').click(function () {
             var href = $(this).attr('href');
             $(href).focus();
             return false;
         });
     }
});

	$(function(){
		if ($('#w').val() == '') {
			$('#w').val(' vyhledávání ');
		}
		$('#w').click(function(){
		    if ($(this).val() == ' vyhledávání ') {
		    	$(this).val('');
		    }
		});
	});
