﻿$(function() { $('#side-tab-wrapper > ul').tabs(); });
$(function() { $('#side-tab-wrapper-bottom > ul').tabs(); });

function SearchSite() {
    var target = document.getElementById('q');
    
    if (target.value != "Search this website...") {
        document.location.href = 'SearchResults.aspx?cx=016156150745461927353:-i1vycbkfhy&cof=FORID%3A11&ie=UTF-8&q=' + target.value + '&sa=Search';
    } 
}

function ClearInput(id) {
    var target = document.getElementById(id);

    if (target.value == "Search this website...") {
        target.value = "";
    }
}