$(document).ready(function() {
      
        $(".image img").tooltip({

		// tweak the position
		position: "bottom right",
		offset: [-375, -150]
	});
      
	$("#search").click(function () {
      	if ($("#search").val() == "Vyhledávání") {
			$("#search").val("");
		}
	});
      
	$("#search-trigger").click(function (e) {
      	e.preventDefault();
      	
		$("#search-form").submit();
	});
      
	$("a[rel=fancybox]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Obrázek ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});
	var dropdown=new TINY.dropdown.init("dropdown", {id:'menu', active:'menuhover'});
	

});

