window.addEvent('domready', function() {
	setupZoom();
	
	

	$$('li').each(function(el) { 
		//els = $(el+':last-child');
	
		el.addEvent('mouseenter',function(els){
			elz = this.getElement('.fullink');
			if(elz.getStyle('display')=='none'){elz.setOpacity(0); elz.setStyle('display','block');};
			
			elz.morph({
				opacity: 0.8,
			});
		})
		el.addEvent('mouseleave',function(els){
			elz = this.getElement('.fullink');
			elz.morph({
				opacity: 0,
			});
		})
	});
	
/*	
	$$('li').each(function(el) { 
		el.addEvent('mouseenter',function(){
			el.morph({
				opacity: 0.5,
			});

		})
		el.addEvent('mouseleave',function(){
			el.morph({
				opacity: 1,
			}); 
		})
	});
*/
	
})
