$(function() {
    add_to_fancybox();
    init_search();
});

/**
 * Function to add to fancybox next photos in photogallery with paging
 *
 *
 */   
function add_to_fancybox(){

    if($('.module_bsFolderGallery').length && $('.module_bsFolderGallery .paging .number').length > 1 && $("a.fancybox, .html a[href$=.jpg][class!=vypnout_nahled], .html a[href$=.png][class!=vypnout_nahled], .html a[href$=.gif][class!=vypnout_nahled]").length ){
        var t = 0;
        $("a.fancybox, .html a[href$=.jpg][class!=vypnout_nahled], .html a[href$=.png][class!=vypnout_nahled], .html a[href$=.gif][class!=vypnout_nahled]").fancybox({
            'autoScale'      : false,
            'transitionIn'	 : 'elastic',
            'transitionOut'	 : 'elastic',
            'titlePosition'  : 'inside',
            'hideOnContentClick' : true,
            'speedIn'        : 100,
            'speedOut'  	 : 100,
            'changeSpeed'    : 100,
            'centerOnScroll' : false
        });
        t=setTimeout("add_to_fancybox()",1000); 
    }
}

function init_search() {
	var input = $("#fulltext_query");
	var defaultText = input.val();
	if (defaultText.length > 0) {
		input.click(function() {
			if (input.val() == defaultText) {
				input.val("");
			}
		});
	}
}
