/*window.addEvent('domready', function(){
	//First Example
	var el = $('myElement'),
		color = el.getStyle('backgroundColor');
	
	// We are setting the opacity of the element to 0.5 and adding two events
	$('myElement').addEvents({
		mouseenter: function(){
			 this.setStyle('cursor','pointer');			
			// This morphes the opacity and backgroundColor
			this.morph({
				// 'background-color': '#FFF2E6',	   
				'background-image': 'url(images/fondoBtnCartelera.gif)',
				'background-repeat': 'repeat-x', 
			});
		},
		mouseleave: function(){
			// Morphes back to the original style
			this.morph({								
				'background-image': 'url(images/fondoBtnCarteleragris.gif)',
				'background-repeat': 'repeat-x',
				 backgroundColor: color
			});
		}
	});
});*/