﻿/* carpetTiles.js
 *
 * Contains general javascript functions used in this website.
 *
 */

function mouseOn(button) 
{
    button.style.backgroundColor = '#534955';
    button.style.color = '#BBC3B9';
}

function mouseOff(button) 
{
    button.style.backgroundColor = '#BBC3B9';
    button.style.color = '#534955';
}

function getCurrentYear() 
{
    return new Date().getFullYear();
}
