window.addEvent('domready', function(){
	$$('.highLightB').addEvents({
		mouseenter: function(){
            this.tween('background-color', '#606060');
        },
        mouseleave: function(){
            this.tween('background-color', '#323232');
        },
        mousedown: function(){
            this.setStyle('border-left', '1px solid #222222');
            this.setStyle('border-top', '1px solid #222222');
        },
        mouseup: function(){
            this.setStyle('border-left', '1px solid #9c9c9c');
            this.setStyle('border-top', '1px solid #9c9c9c');
        }
	});
	$$('a').addEvents({
		mouseenter: function(){
            this.tween('color', '#ffffff');
        },
        mouseleave: function(){
            this.tween('color', '#9c9c9c');
        }
	});
});