var slider1 = {
	images: ["1.jpg","2.jpg","3.jpg","4.jpg","5.jpg","6.jpg "],
	index: 1,
	work: function() {
		$('#slider_private').append('<img src="' + $('#slider_private .prev').attr('src') + '"id="next">');
		$('#slider_private .prev').attr('src', 'pic/private/340/' + slider1.images[this.index]);
		$('#slider_private #next').fadeOut(1500, function() { $(this).remove(); });
		this.index++;
		if (this.index >= slider1.images.length){
			this.index = 0;
		}
	}
};
var slider2 = {
	images: ["1.jpg","2.jpg","3.jpg","4.jpg","5.jpg","6.jpg "],
	index: 1,
	work: function() {
		$('#slider_public').append('<img src="' + $('#slider_public .prev').attr('src') + '"id="next">');
		$('#slider_public .prev').attr('src', 'pic/public/340/' + slider2.images[this.index]);
		$('#slider_public #next').fadeOut(1500, function() { $(this).remove(); });
		this.index++;
		if (this.index >= slider2.images.length){
			this.index = 0;
		}
	}
};
setInterval("slider1.work()", 3000);
setTimeout("setInterval('slider2.work()', 3000)", 1500);