// JavaScript Document

$$('.addshow li').addEvents({
	mouseenter: function(){this.addClass('show');},
	mouseleave: function(){this.removeClass('show');}
});

$$('.dropdown li').addEvents({
	mouseenter: function(){this.addClass('current');this.getFirst('ul').removeClass('hide');},
	mouseleave: function(){this.removeClass('current');this.getFirst('ul').addClass('hide');}
});

window.addEvent('domready', function(){
	var el = $('sortEl'),
		color = el.getStyle('backgroundColor');	
	$('sortEl').addEvents({
		mouseenter: function(){
			this.addClass('current').morph({'height':255,'background-color':'#eee'
			});
		},
		mouseleave: function(){
			this.removeClass('current').morph({height:20,backgroundColor: color
			});
		}
	});
});
