window.addEvent("domready", function() {
			/* Example 6 */
			//var thumns = $$(".thumbs li a");
			var gallery_home = new fadeGallery($$(".gallery_home"), {
				speed: 1200,
				autoplay: true,
				duration: 7000,
				//onStart: function() {
					//thumns.removeClass("active");
					//thumns[this.current].addClass("active");
				//},
				onPlay: function() { this.fireEvent("start");	}
			});
			var buttonPanel = gallery_home.holder.getElement(".control");
			gallery_home.holder.addEvent("mouseenter", function() {
				buttonPanel.tween("bottom", 0);
				gallery_home.prev.tween("bottom", 5);
				gallery_home.next.tween("bottom", 5);
			});
			gallery_home.holder.addEvent("mouseleave", function() {
				buttonPanel.tween("bottom", -40);
				gallery_home.prev.tween("bottom", -50);
				gallery_home.next.tween("bottom", -50);
			});
			
			
		});
