(function($) {
	$.fn.randimage = function(type) {
				
		$(this).each(function() {
			var self = this;
			var foto = function() {
					//alert(type);
					date = new Date();
					var img = new Image();
					$(img).load(function() {
						$(self).attr('src', $(this).attr('src'));
					});
				$(img).attr('src', 'index.php?cmd=getRandomImage&type='+type+'&rand='+date.getTime());
				
				setTimeout(foto, 5000);	
			}
			setTimeout(foto, 5000)
		});
	}
})(jQuery);
