/* ----------------------------------------------
    Autor:
      Jan Dousek (honzik.dousek@gmail.com)
    Posledni uprava:
      30.6.2011
---------------------------------------------- */

/* JQUERY ------ */
jQuery(document).ready(function(){

  /* STYLOVANE FORMULARE --- */
  jQuery(function() {
    jQuery("form.custom").jqTransform();
  });

  /* PRECHOD V LOGU --- */
  jQuery('.logo-text').FontEffect({
    gradient:true,
    gradientColor:"#fff",
    shadow:true,
    shadowColor:"#081810",
    shadowOffsetTop:3,
    shadowOffsetLeft:0,
    shadowBlur:1,
    shadowOpacity:0.1
  })

	/* OZNACOVANI POLOZEK --- */
    jQuery("ul li:last-child,td:last-child,th:last-child,tr:last-child").addClass("last-item");
    jQuery("ul li:first-child,td:first-child,th:first-child,tr:first-child").addClass("first-item");
  });
