/*
 * Pruhovane tabulky
 */
$(document).ready(function() {
	$('table.stripped tr').each(function(i) {
		if(!(i%2))
			$(this).addClass('odd');
		});
});

/*
 * Hover tabulky
 */
if($.browser.msie && $.browser.version < 7) {
	$(document).ready(function() {
		$('table.hover tr').hover(function(){$(this).addClass('hover');}, function(){$(this).removeClass('hover');});
	});
}
