$(document).ready(function(){
	$("table:not('.daily-stats') tr:even, table.custom tr:even").addClass("even");
	$("table:not('.daily-stats') tr:not('.total')").hover(
		function() {
			$(this).children("td").addClass("hover");
		},
		function() {
			$(this).children("td").removeClass("hover");
	});
	
	$("#date_start, #date_end").datepicker({
		dateFormat: "yy-mm-dd",
		duration: "fast"
	});
});

