$(document).ready(function(){
      
    $("table.wyniki tr:even").addClass("even");
	$("table.wyniki tr:odd").addClass("odd");
	$("table.wyniki tbody tr").mouseover(function() {
    	$(this).addClass("tr_hover");
	}).mouseout(function() {
    	$(this).removeClass("tr_hover");
	});
	$("table.wyniki tbody td").click(function(){
		if(this.id > 0) document.location.href = 'http://jolantaprzybysz.pl/index.php/obiekt/edit_form?id='+this.id+'';
	});

    $("table.wyniki2 tr:even").addClass("even2");
	$("table.wyniki2 tr:odd").addClass("odd2");
	$("table.wyniki2 tbody tr").mouseover(function() {
    	$(this).addClass("tr_hover2");
	}).mouseout(function() {
    	$(this).removeClass("tr_hover2");
	});
	
	$("table.wyniki2 tr").click(function(){
		if(this.id > 0) document.location.href = 'http://jolantaprzybysz.pl/index.php/home/show?id='+this.id+'';
	});
	
	function pokaz(obj, src){
		alert(obj);
	}
 });