﻿function aboutRelatedPageLoads() 
{
	startNum = document.URL.lastIndexOf("/") + 1;
    file = document.URL.substring(startNum, document.URL.length - 4)
	//alert(file);
    if (file == "index")
    {
        document.getElementById("home").src = "htdocs/images/manitobas_HOME_RO3.png";
    }
    else if (file == "info" || file == "theband" || file == "theman" || file == "gameroom")
    {
    	document.getElementById("history").src = "htdocs/images/manitobas_BAR_HISTORY_RO3.png";
	}
	else if (file == "photos")
    {
    	document.getElementById("photos").src = "htdocs/images/manitobas_PHOTOS_RO3.png";
	}
	else if (file == "calendar")
    {
    	document.getElementById("calendar").src = "htdocs/images/manitobas_CALENDAR_RO3.png";
	}
	else if (file == "store")
    {
    	document.getElementById("store").src = "htdocs/images/manitobas_STORE_RO3.png";
	}
	else if (file == "contact")
    {
    	document.getElementById("contact").src = "htdocs/images/manitobas_CONTACT_RO3.png";
	}
	else if (file == "links" || file == "friends")
    {
    	document.getElementById("linker").src = "htdocs/images/manitobas_LINKS_RO3.png";
	}
    //alert("hello");
}
function homeMouseOver() {
    document.getElementById("home").src = "htdocs/images/manitobas_HOME_RO3.png";
}
function homeMouseOut() {
	
	startNum = document.URL.lastIndexOf("/") + 1;
    file = document.URL.substring(startNum, document.URL.length - 4)
	//alert(file);
    if (file == "index")
    {
        document.getElementById("home").src = "htdocs/images/manitobas_HOME_RO3.png";
    }
    else
    {
    	document.getElementById("home").src = "htdocs/images/manitobas_HOME.png";
    }
	
    
}

function historyMouseOver() 
{    
    document.getElementById("history").src = "htdocs/images/manitobas_BAR_HISTORY_RO3.png";
}
function historyMouseOut() 
{
    startNum = document.URL.lastIndexOf("/") + 1;
    file = document.URL.substring(startNum, document.URL.length - 4)
	//alert(file);
    if (file == "info" || file == "theband" || file == "theman" || file == "gameroom")
    {
        document.getElementById("history").src = "htdocs/images/manitobas_BAR_HISTORY_RO3.png";
    }
    else
    {
    	document.getElementById("history").src = "htdocs/images/manitobas_BAR_HISTORY.png";
    }   
}

function photosMouseOver() {
    document.getElementById("photos").src = "htdocs/images/manitobas_PHOTOS_RO3.png";
}
function photosMouseOut() {
	
	startNum = document.URL.lastIndexOf("/") + 1;
    file = document.URL.substring(startNum, document.URL.length - 4)
	//alert(file);
    if (file == "photos")
    {
        document.getElementById("photos").src = "htdocs/images/manitobas_PHOTOS_RO3.png";
    }
    else
    {
    	document.getElementById("photos").src = "htdocs/images/manitobas_PHOTOS.png";
    }
	
    
}

function storeMouseOver() {
    document.getElementById("store").src = "htdocs/images/manitobas_STORE_RO3.png";
}
function storeMouseOut() {
	
	startNum = document.URL.lastIndexOf("/") + 1;
    file = document.URL.substring(startNum, document.URL.length - 4)
	//alert(file);
    if (file == "store")
    {
        document.getElementById("store").src = "htdocs/images/manitobas_STORE_RO3.png";
    }
    else
    {
    	document.getElementById("store").src = "htdocs/images/manitobas_STORE.png";
    }
	
}

function calendarMouseOver() {
    document.getElementById("calendar").src = "htdocs/images/manitobas_CALENDAR_RO3.png";
}
function linkOVER() 
{
    document.getElementById("linker").src = "htdocs/images/manitobas_LINKS_RO3.png";
	variable = document.getElementById("links").src;
	alert(variable);
}

function linkOUT() 
{
	
	startNum = document.URL.lastIndexOf("/") + 1;
    file = document.URL.substring(startNum, document.URL.length - 4);
	//alert(file);
    if (file == "links" || file == "friends")
    {
		//alert("on Links Page");
        document.getElementById("linker").src = "htdocs/images/manitobas_LINKS_RO3.png";
    }
    else
    {
		//alert("NOT on Links Page");
    	document.getElementById("linker").src = "htdocs/images/manitobas_LINKS.png";
    }    
}
function calendarMouseOut() {
	
	
	startNum = document.URL.lastIndexOf("/") + 1;
    file = document.URL.substring(startNum, document.URL.length - 4)
	//alert(file);
    if (file == "calendar")
    {
        document.getElementById("calendar").src = "htdocs/images/manitobas_CALENDAR_RO3.png";
    }
    else
    {
    	document.getElementById("calendar").src = "htdocs/images/manitobas_CALENDAR.png";
    }
    
}

function contactMouseOver() 
{
    document.getElementById("contact").src = "htdocs/images/manitobas_CONTACT_RO3.png";
}
function contactMouseOut() 
{
	startNum = document.URL.lastIndexOf("/") + 1;
    file = document.URL.substring(startNum, document.URL.length - 4)
	//alert(file);
    if (file == "contact")
    {
        document.getElementById("contact").src = "htdocs/images/manitobas_CONTACT_RO3.png";
    }
    else
    {
    	document.getElementById("contact").src = "htdocs/images/manitobas_CONTACT.png";
    }    
}

