 $(document).ready(function(){
	

	
	$("a[rel^='lightbox']").lightBox({
		txtImage: "Fotografie",
		txtOf: 'z'
		});


//	obarvení tabulek
//	$("table.normal tr:even td, .produkt-detail table tr:even td").css("background", "#fef1d5");


/*	pokud je přednastavený input (třeba pro hledání) "vyhledávaný text napište zde" - toto odstraní výchozí text v inputu 

	$("input#uz_jm").click(function(){
		if (!$(this).data('vymazano'))
			{
			$(this).val('');				
			$(this).data('vymazano',true);
			}
	});

*/

	//diskuze autoresize textarea
	$('textarea.autoResize').autoResize({
	    // On resize:
	    onResize : function() {
	        $(this).css({opacity:0.8});
	    },
	    // After resize:
	    animateCallback : function() {
	        $(this).css({opacity:1});
	    },
	    // Quite slow animation:
	    animateDuration : 300,
	    // More extra space:
	    extraSpace : 40
	});

	//diskuze textarea charLeftCounter
	if ($('textarea.charCounter').length>0)
		{
		var maxChars = $('textarea.charCounter').attr('maxchars');		//max znaků
		if (parseInt(maxChars) > 0)
			{
			$('textarea.charCounter').NobleCount('span.textareaCounter', {
						max_chars: maxChars,
						block_negative: true
						});
			}
		}


 });
