/* --------------------------------------------------------------------------------------------
    Autor:
      Jan Dousek (jan.dousek@edvens.cz)
    Posledni uprava:
      3.11.2011
-------------------------------------------------------------------------------------------- */

/* JQUERY ------ */
jQuery(document).ready(function(){

 /* COLORBOX  --- */
	jQuery("a[rel='colorbox']").colorbox({transition:"elastic"});
	jQuery("#click").click(function(){
		return false;
	});

	/* OZNACOVANI POLOZEK --- */
    jQuery('ul li:last-child').addClass('last');
    jQuery('ul li:first-child').addClass('first');
    jQuery("table tbody tr:nth-child(even)").addClass("odd");
  });
