﻿$(document).ready(function()
   {
		//Examples of how to assign the ColorBox event to elements
		$("a[rel='cbFoto']").colorbox();				
		$(".cbDokument").colorbox({iframe:true, transition: "none", innerWidth:650, innerHeight:350});																														
   });			$(function()    {        var treeView1 = $('#pKategorie_TreeView1');  		var treeNodes = treeView1.find('div[id$=Nodes]');        var treeImages = treeView1.find('img').not('img[alt=\'\']');            
        $('#aToggleNodes').click(function() 
          {
            if (this.innerHTML == 'Rozbalit kategorie') 
              {
                  treeNodes.css({ 'display': 'block' });
                  treeImages.attr('src', 'img/tvCollapse.gif')                   
                  this.innerHTML = 'Zabalit kategorie';
              }
              else 
              {
                  treeNodes.css({ 'display': 'none' });
                  treeImages.attr('src', 'img/tvExpand.gif')                                         
                  this.innerHTML = 'Rozbalit kategorie';
              }
              return false;
          }
          );
  }
);

