window.onload = function()	{
	if(!document.getElementsByClassName)	return false;
	var testImg = document.createElement("img");
	testImg.onload = function()	{
		flipSplash();
	}
	testImg.src = "http://robertwilsonblues.com/1x1.png";
}
var flipSplash = function()	{
	if(!document.getElementsByClassName)	return false;
	var splashes = document.getElementsByClassName("splash");
	for(i = 0; i < splashes.length; i++)	{
		splashes[i]['imgSrc'] = splashes[i].getAttribute("splashimage");
		splashes[i]['objImg'] = document.createElement("img");
		splashes[i]['objImg'].src = splashes[i]['imgSrc'];
		for(j = 0; j < splashes[i].childNodes.length; j++)	{
			splashes[i].removeChild(splashes[i].childNodes[j]);
		}
		splashes[i].appendChild(splashes[i]['objImg']);
	}
}	
