// JavaScript Document

$(document).ready(function() { 
		  
		//prid class poslednimu li v danem ul
//		$('ul.ul li:last-child, .gallery img').addClass("last");
	
//	 	$(".img").lightBox();
//	 	$("#datepicker").datepicker();
//	 	$("#datepicker").datepicker($.datepicker.regional['cs']);

		//stridani barvy
		$('.table tr:even').addClass('tr2');
		
		//onmouseover
		$(".table tr").mouseover(function() {
			$(this).addClass("over");
		});
		
		$(".table tr").mouseout(function() {
			$(this).removeClass("over");
		});	
				
		//alert("Skripty: OK");	

});	


