

function switchSearch(val) {
    //First change the bolding
    document.getElementById('search_recipe').style.fontWeight="normal";
    document.getElementById('search_ingred').style.fontWeight="normal";

    document.getElementById(val).style.fontWeight="bold";
    
    //Now change the hidden id
    document.getElementById("search_type").value=val;

    //Next set the focus
    document.getElementById('search_val').focus();
}