window.addEvent('domready', 
function() 
{

	var myVerticalSlide = new Fx.Slide('config');
	//var myVerticalSlide = new Fx.Morph('config', {duration: 400});

	myVerticalSlide.hide();

	//$('config').setStyle({'height: 0px'});

	$('config').setStyle("height", "300px");

	$('slideout').addEvent('click', function(e){
		e.stop();
		myVerticalSlide.toggle();
		//myVerticalSlide.start({'height: 0px'});
	});

}
);

window.addEvent('domready', 
function() 
{
	var bandNameArray = new Array(
		"The&nbsp;OMG&nbsp;Ponies",
		"The&nbsp;Conundrum&nbsp;Bros.",
		"The&nbsp;Honkies",
		"The&nbsp;Mushrooms",
		"The&nbsp;Nobody&nbsp;Elses",
		"The&nbsp;Duo-Formerly-Known-As&nbsp;Trio",
		//"The&nbsp;Smackaho's",
		"The&nbsp;Light&nbsp;Loafers",
		"His&nbsp;Angry&nbsp;Beard",
		"Those&nbsp;Other&nbsp;Guys",
		"The&nbsp;&nbsp;att&nbsp;Snead&nbsp;Band"
	);
			
	var bandName = bandNameArray[Math.floor(Math.random() * bandNameArray.length)];
	
    var myfield = document.getElementById('site_title');
    
    if (myfield !== null) 
	{ 
		myfield.innerHTML = "<h1>Blair&nbsp;Cook</h1><h4>and&nbsp;" + bandName + "</h3>";
    }
} 
);