function getSwf ( swf )
{
	if (navigator.appName.indexOf("Microsoft") != -1) return window[swf];
	else return document[swf];
}

function showArtist (  )
{
	
	getSwf( "sectionPictures" ).showArtist( this.id );
	
}

function hideArtist (  )
{
	
	getSwf( "sectionPictures" ).hideArtist( this.id );
	
}

function setupExtInt ()
{
	//getSwf( "sectionPictures" ).setupInterface();
	var titles = document.getElementsByTagName('h1');
	var lgt = titles.length;
	for (var i=0; i < lgt; i++)
	{
		Utils.addEventSimple( titles[i], "mouseover", showArtist );
		Utils.addEventSimple( titles[i], "mouseout", hideArtist );
	}
}

//Utils.addEventSimple(window, "load", setupExtInt);
addDOMLoadEvent(setupExtInt);