window.addEvent('domready', function() {
	var hide = $$('.hide');
	$('trans').setStyle('opacity', .5);
	
	hide.each(function(el){
		var fx = new Fx.Styles(el, {duration:1000, wait:false});
		setTimeout(function(){
			fx.start({
			'opacity': 0
		});

		},7000);
	});
		
});