function pageSwitch(page, title)
{   /*function to switch the pages on the site - incuding the images. 
    newimageR can be set by imageSwitch.js if the images in the frame have been switched, this is done so that 
    the slider continues to slide over the correct image and not flick it to the original image */
    if (document.getElementById)
    {
        document.getElementById('imageR').src= 'http://www.inu-d-afrique.com/theme/'+page+'R.jpg';  //Set up the animated image
        document.getElementById('banner1').style.display='none'; //Hide and offset the div ready to slide
        document.getElementById('banner1').style.visibility = 'hidden';
        document.getElementById('banner1').style.left='210px';
        document.getElementById('content_banner1').style.left='-260px';
        document.getElementById('banner1').style.width='210px';
        document.getElementById('bannerR').style.display='block';
        document.getElementById('bannerR').style.visibility = 'visible';
        setTimeout('showHideContent(\'banner1\')',100);  //Call the slide function
        setTimeout('setBanner1("'+page+'")',200); //Call the function to hide everything at the end
        document.title="Inu D'Afrique "+title; //update the page title
    }
    return true;
}

function setBanner1(page)
{
	if(slider_slideInProgress)
	{
        setTimeout('setBanner1("'+page+'")',200);
	} else {
        document.getElementById('banner1').style.display='none';
        document.getElementById('banner1').style.visibility = 'hidden';
        document.getElementById('bannerR').style.display='none';
        document.getElementById('bannerR').style.visibility = 'hidden';
        document.getElementById('newimageR').src= 'theme/'+page+'R.jpg';
        document.getElementById('imageR').src= 'theme/transparent.gif';  //create a transparent image so we don't get a flash of the previous page
	}
}
