/**
 * These are the functions for the images on the tag line on the Bartel site
 *
 * These functions change the images from black & white to colour, and back again
 * 
 */


function FN_tag1_colour()
{
document.tag1.src="images/tag-innovate-colour.gif";
}

function FN_tag1_bw()
{
document.tag1.src="images/tag-innovate-black.gif";
}

function FN_tag2_colour()
{
document.tag2.src="images/tag-design-colour.gif"
}

function FN_tag2_bw()
{
document.tag2.src="images/tag-design-black.gif"
}

function FN_tag3_colour()
{
document.tag3.src="images/tag-manu-colour.gif"
}

function FN_tag3_bw()
{
document.tag3.src="images/tag-manu-black.gif"
}

