
	    window.addEvent('domready', function(){
			links = $$('.cssimg');
			toggles = $$('.info');
			togs = {};
			links.each(function(el, idx) {
				togs[idx] = new Fx.Styles(toggles[idx], {duration:200, wait:false});
				el.addEvent('mouseenter', function(){ togs[idx].start({ 'bottom': 0 }); });
				el.addEvent('mouseleave', function(){ togs[idx].start({ 'bottom': -100 }); });
			});
			links2 = $$('.cssimglong');
			toggles2 = $$('.infolong');
			togs2 = {};
			links2.each(function(e2, idx) {
				togs2[idx] = new Fx.Styles(toggles2[idx], {duration:200, wait:false});
				e2.addEvent('mouseenter', function(){ togs2[idx].start({ 'bottom': 0 }); });
				e2.addEvent('mouseleave', function(){ togs2[idx].start({ 'bottom': -100 }); });
			});
		});



			function startGallery() {
				var myGallery = new gallery($('myGallery'), {
					timed: true,
					delay: 5000,
					showCarousel: false
				});
			}
			window.addEvent('domready', startGallery);

