function assignStaticImage()
{

	d=document;
	
	// Get page URL
	l=window.location.toString();
	
	// Split page URL by slashes
	s=l.split("/");
	
	thisDir = s[3];
	
	static = document.getElementById('staticImage');
	
	static.className = thisDir;	
	
	if (thisDir == "search" || thisDir == "news")
	{
		static.className = "default";	
	}

}


addDOMLoadEvent(function () {
	assignStaticImage();
});