		window.addEvent('domready', function() {
			/* For list menus. i.e. Artists at the moment. */
			var list = $$('.sideblock ul li a');
			list.each(function(element) {
 
				var fx = new Fx.Styles(element, {duration:200, wait:false, transition: Fx.Transitions.linear});
 
				element.addEvent('mouseenter', function(){
					fx.start({
						'background-color': '#60859D',
						'color': '#fff'
					});
				});
 
				element.addEvent('mouseleave', function(){
					fx.start({
						'background-color': '#EBE8DD',
						'color': '#403f2c'
					});
				});
 			});
 		});