
window.addEvent('domready', function() {
   // console.log($$(".page_item"));
  
	$$("#senslinks ul li").each(function(item){
	                    item.getChildren()[0].removeEvent('mouseover');
						item.addEvent('mouseover', function(){
    					this.tween('width', [200, 220]);

						});
						item.addEvent('mouseout', function(){
    					this.tween('width', [220, 196]);

						});

					
						});
			

});

