jQuery.fn.miniscroller = function(f) {
		var l = 0;
		return this.each(function() {
			var a = $(this);
			$(this).find(".scrollerArrows img:eq(0)").click(function() {
				if(l !== 0) { l--; }
				$(a).find(".scrollerLinks a").hide();
				$(a).find(".scrollerLinks a:eq(" + l + ")").show();
			});
			$(this).find(".scrollerArrows img:eq(1)").click(function() {
				if(l !== $(a).find(".scrollerLinks a").size()-1) { l++; }
				$(a).find(".scrollerLinks a").hide();
				$(a).find(".scrollerLinks a:eq(" + l + ")").show();
			});
		});
	};

/*

(function($){
	$.fn.miniscroller = function() {
		var l = 0;
		return this.each(function() {
			var a = $(this);
			$(this).find(".scrollerArrows img:eq(0)").click(function() {
				if(l !== 0) { l--; }
				$(a).find(".scrollerLinks a").hide();
				$(a).find(".scrollerLinks a:eq(" + l + ")").show();
			});
			$(this).find(".scrollerArrows img:eq(1)").click(function() {
				if(l !== $(a).find(".scrollerLinks a").size()-1) { l++; }
				$(a).find(".scrollerLinks a").hide();
				$(a).find(".scrollerLinks a:eq(" + l + ")").show();
			});
		});
	};
})(jQuery);

*/