// JavaScript Document

$$('.addshow li').addEvents({
	mouseenter: function(){this.addClass('show');},
	mouseleave: function(){this.removeClass('show');}
});
$$('.vv1').addEvents({
	mouseenter: function(){this.getFirst('ul').removeClass('hidd');},
	mouseleave: function(){this.getFirst('ul').addClass('hidd');}
});

