// JavaScript Document
window.addEvent('domready', function(){	   			
    var mylightbox = new Lightbox(); 		
	var Tips2 = new Tips($$('.Tips2'), {				
				initialize:function(){
					this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 500, wait: false}).set(0);
				},
				onShow: function(toolTip) {					
					$('rezhere').effects().start({'opacity':[0,1]});					
				},
				onHide: function(toolTip) {					
					$('rezhere').effects().start({'opacity':[1,0]});					
				}				
			});
			
	$$('.pic').setStyle('opacity', '.7');   
	var list3 = $$('.pic');
    list3.each(function(element) { 
	var fx3 = new Fx.Styles(element, {duration:600, transition: Fx.Transitions.Quad.easeOut, wait:false}); 
	element.addEvent('mouseenter', function(){
		fx3.start({
		    'opacity': '1'
		});
	}); 
	element.addEvent('mouseleave', function(){
		fx3.start({
            'opacity': '.7'
		});
	}); 
});		    
	});