window.addEvent('domready', function() {
	$$('.gbox').each(function(el) {
		el.addEvents({
			'mouseenter': function() {
			el.getElements('img').each(function(div) {
				div.fade('.05');
			});
		},
			'mouseleave': function() {
			el.getElements('img').each(function(div) {
				div.fade('1');
			});
		  }
		});
	});
});