  function domo() {

    // tymczasowe max do przewijania
    var max = 0;
    
    // zmienna liczaca ilosc odpowiedzi na dany search
    // w zaleznosci, czy elementy istnieja
    var maxmax = 0;

    var i = 0;


    $.hotkeys.add('down',function () {
    
	i = searchPoz;

	// sprawdz nastepny element - czy jest
	searchPoz++;
	if ( $("#list_"+searchPoz+" a.ajax_text_link").length > 0 ) {
	    // istnieje element ponizej - sprawdz czy maxmax nie trzeba powiekszyc
	    if (searchPoz > maxmax) maxmax ++;
	    
	}
	searchPoz--;

	// jesli jest element, ustaw tam focus
        if (searchPoz < maxmax) {
    	    searchPoz++;
    	    $("#list_"+searchPoz+" a.ajax_text_link").focus();
        }

    });
    

    $.hotkeys.add('up',function () {
	i = searchPoz;
	    
        if (searchPoz > 1) {
    	    searchPoz--;
	    $("#list_"+searchPoz+" a.ajax_text_link").focus();
        }

    });

  }



$(document).ready(domo); 

