window.addEvent('domready', function(){
	//First Example
	
	// We are setting the opacity of the element to 0.5 and adding two events
	$('website').addEvents({
		mouseenter: function(){
			// This morphes the opacity and backgroundColor
			
			this.mouseTracking("IN");
			
		},
		mouseleave: function(){
			// Morphes back to the original style
			
			this.mouseTracking("OUT");
			
		}
	});
});

