function montaHilites (obj){
		obj.each(function(el) {    
	            var effect = el.effect('background-position', {duration: 300, wait: false, notransition: Fx.Transitions.Circ.easeOut, fps: 50}).set(-140);
	            el.addEvent('mouseenter', function(){
					effect.start(
					-140,0
					);
					//document.body.style.cursor = 'hand';
	            })
	             el.addEvent('mouseleave', function(){
					effect.start(
					0,-140
					);
					//document.body.style.cursor = 'default';
	            })
	            //addEvent('mouseout', effect.goTo.pass(-300, effect));
	        });
	}

	function montaHilitesPressSelect (obj){
		obj.each(function(el) {    
	            var effect = el.effect('background-position', {duration: 300, wait: false, notransition: Fx.Transitions.Circ.easeOut, fps: 50}).set(-372);
	            el.addEvent('mouseenter', function(){
					effect.start(
					-372,0
					);
					//document.body.style.cursor = 'hand';
	            })
	            
	             el.addEvent('mouseleave', function(){
					effect.start(
					0,-372
					);
					//document.body.style.cursor = 'default';
	            })
	            //addEvent('mouseout', effect.goTo.pass(-300, effect));
	        });
	}
	
	function topMenu1 (obj){
		obj.each(function(el) {    
	            var effect = el.effect('height', {duration: 300, wait: false, notransition: Fx.Transitions.Circ.easeOut, fps: 50});
	       //      var effect2 = el.effect('padding-bottom', {duration: 300, wait: false, notransition: Fx.Transitions.Circ.easeOut, fps: 50});
	           
	            el.addEvent('mouseenter', function(){
					effect.start( '10' , '0' );
					//effect2.start(0,13);
					//document.body.style.cursor = 'hand';
	            })
	            
	             el.addEvent('mouseleave', function(){
					//	effect.start(0,10);
					//	effect2.start(0,13);
					//document.body.style.cursor = 'default';
	            })
	            
	            //addEvent('mouseout', effect.goTo.pass(-300, effect));
	        });
	}
	
	function topMenu2 (obj){
		obj.each(function(el) {    
	            var effect = el.effect('margin-bottom', {duration: 300, wait: false, notransition: Fx.Transitions.Circ.easeOut, fps: 50});
	            el.addEvent('mouseenter', function(){
					effect.start(13,0);
	            })
	            
	             el.addEvent('mouseleave', function(){
					//	effect.start(0,13);
					//document.body.style.cursor = 'default';
	            })
	            
	            //addEvent('mouseout', effect.goTo.pass(-300, effect));
	            
	        });
	}