$(function(){
	var x = function(curr) { 
	    $('#tippek p').load('/index_tipp_ajax?pos=' + curr); 
	};
	 
	$('#tippek a.prev').click(function() {
	    pos.current--; 
	    if (pos.current < pos.min) { 
	        pos.current = pos.max; 
	    } 
	    this.blur();
	    x(pos.current); 
	    return false; 
	});
	
	$('#tippek a.next').click(function() { 
	    pos.current++; 
	    if (pos.current > pos.max) { 
	        pos.current = pos.min; 
	    } 
	    this.blur();
	    x(pos.current); 
	    return false; 
	});
});
