(function( $ ){
 
    $.fn.harmonio = function(options) {
        
        return this.each(function() {
            
            var elem = $(this).children("div").children("ul");
            var top = 2;
            var height = 150;
            $(elem).children("li").each(function(){
            	$(this).css("margin", top + "px 0px ");
            	$(this).css("height", height + "px");
            	top += 2;
            	height -= 4;
            	
            	$(this).hover(
        				function(){
        					$(this).stop().animate({width: '290px'});
        					$(this).siblings("li").stop().animate({width: '50px'});
        					
        				},
        				function(){
        					$(this).stop().animate({width: '110px'});
        					$(this).siblings("li").stop().animate({width: '110px'});
        				}
        			  );
            });
            
        });
        
    };
    

})( jQuery );
