﻿ //style="background: #B8C0C7"

function itemOver(itemElement)
{
    if (itemElement.id == 'first') // Our work
    {
        itemElement.style.backgroundColor = '#B8C0C7';
    }
    if (itemElement.id == 'two') // Our blogs
    {
        itemElement.style.backgroundColor = '#C7BFAD';
    }
    if (itemElement.id == 'three') // News
    {
        itemElement.style.backgroundColor = '#B8AEA5';
    }
    if (itemElement.id == 'last') // Careers
    {
        itemElement.style.backgroundColor = '#C5C4BE';
    }
    
}

function itemOut(itemElement)
{
    itemElement.style.backgroundColor = '';
}