﻿window.addEvent('domready', function () {   
     $$('.item').each(function(element,index) {  
       
        element.addEvent('mouseenter', function(e) {
	        this.addClass('hovered');
	    });
	
	    element.addEvent('mouseleave', function(e) {
            this.removeClass('hovered');
        });  
    });  
});  
