﻿
//Byter en bilds källbild
function swap(ID,ImgPath)
{
    try
    {
	    document.getElementById(ID).src=ImgPath;
	}
	catch(err)
    {
    }
}

//Sätt ett objekts färg
function color(ID,Color)
{
    try
    {
	    document.getElementById(ID).style.color=Color;
	}
	catch(err)
    {
    }
}

//Byter en länks källa
function swapLink(ID,URL)
{
	document.getElementById(ID).href=URL;
}
