/*-------------------------------------------------------+
| PHP-Fusion Content Management System
| Copyright (C) 2002 - 2008 Nick Jones
| http://www.php-fusion.co.uk/
+--------------------------------------------------------+
| Filename: jquery.lastseenusers.js
| Author: Slawomir N. (slawekneo)
| Site: http://www.php-fusion.pl
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or online
| at www.gnu.org/licenses/agpl.html. Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/

jQuery.extend({

	jQlastseen: function( url, delay, ele ) {
		var e = $(ele);
		
		e.load(url, function(){
			window.setTimeout("$.jQlastseen('"+url+"', '"+delay+"', '"+ele+"');", delay);
		});
	}

})(jQuery);

$(function() {

	$.jQlastseen ( dir, czas,  '#list_last_seen_users');

});
