 $(document).ready(function(){
	
	$("a[rel^='lightbox']").lightBox({
		txtImage: "Fotografie",
		txtOf: 'z'
		});





	$("table.normal tr:even td, .produkt-detail table tr:even td").css("background", "#fef1d5");

 	$("input#uz_jm").click(function(){
		if (!$(this).data('vymazano'))
			{
			$(this).val('');				
			$(this).data('vymazano',true);
			}
	});

	
 	$("input[name='heslo'], .prekryti").click(function(){
		if (!$(this).data('vymazano'))
			{
			$(this).val('');
			$(this).data('vymazano',true);
			$(".prekryti").css('display', 'none');
			$("input[name='heslo']").focus();
			}
	});


 	var zobrazeno = 1;
 	$('input#searchInput').keyup(function(){
 		if(zobrazeno == 1) {
 			quickSearchInit('searchInput','searchContent');
 			zobrazeno = 2;
 		} 
 		if (this.value.length == 0) zobrazeno = 1;
 	});
  
	
	
});
 



function quickSearchInit(searchInput,searchContent){

	if(document.getElementById(searchInput)){
 	
 		$('input#'+searchInput).quicksearch('table.'+searchContent+' tr');
 		
 		$('table.'+searchContent).show();
		
 		$("body").click(function(e){
		   var target = $(e.target);
  
		   if(!target.is("input#"+searchInput)){
			   if($('table.'+searchContent).is(':visible')){
		 			$('table.'+searchContent).fadeOut(400);
		 	   }
	 	   }
		});
		 		
 	}
}


