/* MD GALERIE */
$(document).ready(function(){

	var maxDataHeight = 0;
	$('.fotonahled .data').each( function(){
		if( $(this).height() >  maxDataHeight ){
			maxDataHeight = $(this).height();
		}
	});
	if( maxDataHeight > 0 ){
		$('.fotonahled .data').height(maxDataHeight);
	}else{
		$('.fotonahled .data').hide();
	}
	$('.gShow').click(function(){
		if( $('.gShowDiv').css('display') == 'none' ){
			$('.gShowDiv').fadeIn(400);
			$('.gShowStav').html('- ');
		}else{
			$('.gShowDiv').fadeOut(400);
			$('.gShowStav').html('+ ');
		}
	});
	$('.gShowLast').click(function(){
		if( $('.gShowLastDiv').css('display') == 'none' ){
			$('.gShowLastDiv').fadeIn(400);
			$('.gShowLastStav').html('- ');
		}else{
			$('.gShowLastDiv').fadeOut(400);
			$('.gShowLastStav').html('+ ');
		}
	});
	/* TAB */
	// tabs
	
	var TABS_COOKIE1 = 'galerie_tabs_cookie';
	var prvniTabIndex1 = prvniTabIndexJazyka;
	if( prvniTabIndex1 == 0 ) prvniTabIndex1 = parseInt($.cookie(TABS_COOKIE1))||0;
    $("#container").tabs(
    	( prvniTabIndex1 )
    	,{ //
    		onClick: function(clicked){ //
				var lastTab = $(clicked).parents("ul").find("li").index(clicked.parentNode) + 1;
				$.cookie(TABS_COOKIE1, lastTab);
			}
			,fxSlide: true
			,fxFade:  true
			,fxSpeed: "fast"
			,cache: true
		}
	);
	var cName = '#container';
	var cIndex = 1;
	while( $(cName + cIndex).size() > 0  ){
		var TABS_COOKIE = 'galerie_tabs_cookie'+cIndex;
		var prvniTabIndex = prvniTabIndexJazyka;
		if( prvniTabIndex == 0 ) prvniTabIndex = parseInt($.cookie(TABS_COOKIE))||0;
		
	    $(cName + cIndex).tabs(
        	( prvniTabIndex )
        	,{ //
        		onClick: function(clicked){ //
    				var lastTab = $(clicked).parents("ul").find("li").index(clicked.parentNode) + 1;
    				$.cookie(TABS_COOKIE, lastTab);
    			}
    			,fxSlide: true
    			,fxFade:  true
    			,fxSpeed: "fast"
    			,cache: true
    		}
    	);
		cIndex++;
	}
    
    if( $('#galerie_edit_img').size()){
		var url = "#TB_inline?height=200&width=450&inlineId=galerie_edit_img&modal=true";
		tb_show("Editace obrázku", url);
    }
	
});

