function loadSiteTitle()
{
    sitetitle.filters[0].apply();
    sitetitle.src = "images/sitetitle_2.gif";
    sitetitle.filters[0].play();
}
/* Rather than loading the second banner just once this function
alternates between the two banners.  For this to work you need to 
attach the onLoad event script to 'banner' rather than 'logo', so 
that the setTimeout function is called every time the banner is 
loaded' */
/*
var siteTitleIndex = 1;
function loadSiteTitle()
{
    sitetitle.filters[0].apply();
    if (siteTitleIndex == 1)
    {
        sitetitle.src = "images/sitetitle_2.gif";
    }
    else
    {
        sitetitle.src = "images/sitetitle.gif";
    }
    siteTitleIndex *= -1;
    sitetitle.filters[0].play();
}
*/

