/*Weather Section*/

function showNewColorMorning(linkName)
{
    for (var i = 1; i < 4; i++)
    {
		document.getElementById("morning" + i).className="anchorOff";
		
    }
	
	document.getElementById("morning" + linkName).className="anchorOn";
}

function showNewColorAfternoon(linkName)
{
    for (var i = 1; i < 3; i++)
    {
		document.getElementById("afternoon" + i).className="anchorOff";
		
    }
	
	document.getElementById("afternoon" + linkName).className="anchorOn";
}

function showNewColorNight(linkName)
{
    for (var i = 1; i < 3; i++)
    {
		document.getElementById("night" + i).className="anchorOff";
		
    }
	
	document.getElementById("night" + linkName).className="anchorOn";
}

/*Rodrigues Section*/

function showNewColorRodMorning(linkName)
{
    for (var i = 1; i < 2; i++)
    {
		document.getElementById("rodmorning" + i).className="anchorOff";
		
    }
	
	document.getElementById("rodmorning" + linkName).className="anchorOn";
}

function showNewColorRodAfternoon(linkName)
{
    for (var i = 1; i < 2; i++)
    {
		document.getElementById("rodafternoon" + i).className="anchorOff";
		
    }
	
	document.getElementById("rodafternoon" + linkName).className="anchorOn";
}

function showNewColorRodNight(linkName)
{
    for (var i = 1; i < 2; i++)
    {
		document.getElementById("rodnight" + i).className="anchorOff";
		
    }
	
	document.getElementById("rodnight" + linkName).className="anchorOn";
}
