/* --------------------------------------------------------------------------------------------
    Autor:
      Jan Dousek (jan.dousek@edvens.cz)
    Posledni uprava:
      8.9.2011
-------------------------------------------------------------------------------------------- */

/* JQUERY ------ */
jQuery(document).ready(function(){

	/* OZNACOVANI POLOZEK --- */
    jQuery("ul li:last-child,td:last-child,th:last-child,dt:last-child,dd:last-child").addClass("last");
    jQuery("ul li:first-child,td:first-child,th:first-child,dt:first-child,dd:first-child").addClass("first");
    jQuery("table tbody tr:odd").addClass("odd");
  });

  /* ROZBALOVANI A SKRYVANI  --- */
  jQuery(".toggle-container").hide();
	jQuery(".trigger").click(function(){
		jQuery(this).toggleClass("trigger-ac").next().slideToggle("fast");
		return false;
	});
