﻿function searchFunction() {
    document.getElementById('searchTextBox').value = '';
    document.getElementById('searchTextBox').style.color = 'Black';
    document.getElementById('searchBoxOut').style.backgroundImage = 'url(images/SearchBox2.png)';
    document.getElementById('searchBoxOut').style.width = '154px';
    document.getElementById('searchBoxOut').style.height = '22px';
    document.getElementById('searchBoxOut').style.position = 'relative';

}

function OpenInNewWindow() {
    document.forms[0].target = "_blank";
}
function changeImage() {
    document.getElementById('searchBoxOut').style.backgroundImage = 'url(images/SearchBox2.png)';
    document.getElementById('searchBoxOut').style.width = '154px';
    document.getElementById('searchBoxOut').style.height = '22px';
    document.getElementById('searchBoxOut').style.position = 'relative';
}

function changeOriginal() {
    if (document.getElementById('searchTextBox').value == '') {
        document.getElementById('searchTextBox').value = 'Search...';
    }
    document.getElementById('searchBoxOut').style.backgroundImage = 'url(images/SearchBox1.png)';
    document.getElementById('searchBoxOut').style.width = '154px';
    document.getElementById('searchBoxOut').style.height = '22px';
    document.getElementById('searchBoxOut').style.position = 'relative';
    document.getElementById('searchTextBox').style.color = 'White';
}

function searchAction() {
    var searchText = document.getElementById('searchTextBox').value;

    if (searchText == '' || searchText == 'Search...') {
        document.getElementById('searchLink').href = '#';
    }
    else {
        document.getElementById('searchLink').href = 'http://www.google.com/search?q=site:www.sos-team.com ' + searchText;
    }
}

function peopleHighlight() {
    document.getElementById('imgHomePeople').src = 'images/SOS_People_Staffing-ffffff.jpg';
}

function peopleRegular() {
    document.getElementById('imgHomePeople').src = 'images/SOS_People_Staffing-f2f2f2.jpg';
}

function projectsHighlight() {
    document.getElementById('imgHomeProjects').src = 'images/SOS_Consulting_Projects-ffffff.jpg';
}

function projectsRegular() {
    document.getElementById('imgHomeProjects').src = 'images/SOS_Consulting_Projects-f2f2f2.jpg';
}

function outsourcingHighlight() {
    document.getElementById('imgHomeOutsourcing').src = 'images/SOS_Outsourcing_TotalAdmin-ffffff.jpg';
}

function outsourcingRegular() {
    document.getElementById('imgHomeOutsourcing').src = 'images/SOS_Outsourcing_TotalAdmin-f2f2f2.jpg';
}
