﻿function searchbox_blur() {
    var searchBox = document.getElementById('cms-search');
    if (searchBox.value == '' || searchBox.value == 'Search...') {
        searchBox.className = 'searchBoxEmpty';
        searchBox.value = 'Search...';
    } else {
        searchBox.className = 'searchBoxNonEmpty';
    }
}

function searchbox_focus() {
    var searchBox = document.getElementById('cms-search');
    if (searchBox.className == 'searchBoxEmpty') {
        searchBox.value = '';
    }
    searchBox.className = 'searchBoxFocus';
}
