/*
// NEW super AKCE

      /// objekt pres ID
      var akce = document.getElementById("akce");
      if(akce){
      	var akce_close = document.getElementById("akce_close");
			  akce_close.onclick = function(){akce.style.display='none';};
			  akce_close.style.cursor='pointer';
      }
      
*/
$(document).ready(function(){
	
	var zobraz = $('input[name="ZapnoutAkce"]').val().toLowerCase();
	
	$('input[name="ZapnoutAkce"]').css('display','none');

	if (zobraz == 'ano'){
		 $('#akce').fadeIn(1000).css('cursor','pointer');
		 $('#akce, #akce #akce_close').click(function(){
			   $('#akce').fadeOut(1000);
			});
	}
});



//$('input[id][name$="man"]').val('only this one');
//<input type="hidden" name="ZapnoutAkce" value="ano" />
