window.addEvent('domready',function(){
	/*if ($('band-main') && $('band-list'))
	{
		if ($('band-list').hasClass('hoverfx') == true)
		{
			mainband_cache = new Array();
			running = false;
			newmainband = new Element('div',{
				'class': 'newmainband',
				'opacity': 0
			}).inject($('band-main'));
			newmainband_fx = new Fx.Morph(newmainband,{duration:200});
			$$('#band-list li a').each(function(el){
				var req = new Request.HTML({
					url: el.href,
					onSuccess: function(html)
					{
						newmainband.set('text','');
						newmainband.adopt(html);
						newmainband.setStyle('display','block');
						newmainband_fx.start({'opacity':1}).chain(function(){
							var html = newmainband.get('html');
							mainband_cache[el.rel] = html;
							$('band-main').getElement('div.band').set('text','');
							$('band-main').getElement('div.band').set('html',html);
							newmainband.setStyle('display','none');
							newmainband.set('opacity',0);
							running = false;
						});
					}
				});
				el.addEvent('mouseenter',function(){
					if (running == false)
					{
						running = true;
						if (mainband_cache[el.rel])
						{
							var html = mainband_cache[el.rel];
							newmainband.set('text','');
							newmainband.set('html',html);
							newmainband.setStyle('display','block');
							newmainband_fx.start({'opacity':1}).chain(function(){
								var html = newmainband.get('html');
								mainband_cache[el.rel] = html;
								$('band-main').getElement('div.band').set('text','');
								$('band-main').getElement('div.band').set('html',html);
								newmainband.setStyle('display','none');
								newmainband.set('opacity',0);
								running = false;
							});
						} else
						{
							req.send();
						}
					}
				});
			});
		}
	}*/
});