﻿// JScript File

function mouseOverBorderChange(id, colour){
    document.getElementById(id).style.borderTopColor = colour;
    document.getElementById(id).style.borderTopStyle = 'solid';
    document.getElementById(id).style.borderTopWidth = '10px';
}

function mouseOutBorderChange(id){
    document.getElementById(id).style.borderTopColor = document.cookie;
    document.getElementById(id).style.borderTopStyle = 'solid';
    document.getElementById(id).style.borderTopWidth = '10px';
}

function mouseClickBorderChange(colour){
    document.cookie = colour;
}

