function showcat(tab, town){

    if(tab == "whattodo"){
        document.getElementById(town + "whattodo").style.display='block';
        document.getElementById(town + "wheretostay").style.display='none';
        document.getElementById(town + "business").style.display='none';
        document.getElementById(town + "livinghere").style.display='none';
        document.getElementById(town + "gettinghere").style.display='none';
        
        document.getElementById(town + "whattodolink").style.backgroundColor='#a6c5dc';
        document.getElementById(town + "wheretostaylink").style.backgroundColor='#97b7cf';
        document.getElementById(town + "businesslink").style.backgroundColor='#97b7cf';
        document.getElementById(town + "livingherelink").style.backgroundColor='#97b7cf';
        document.getElementById(town + "gettingherelink").style.backgroundColor='#97b7cf';
    }
    if(tab == "wheretostay"){
        document.getElementById(town + "whattodo").style.display='none';
        document.getElementById(town + "wheretostay").style.display='block';
        document.getElementById(town + "business").style.display='none';
        document.getElementById(town + "livinghere").style.display='none';
        document.getElementById(town + "gettinghere").style.display='none';
        
        document.getElementById(town + "whattodolink").style.backgroundColor='#97b7cf';
        document.getElementById(town + "wheretostaylink").style.backgroundColor='#a6c5dc';
        document.getElementById(town + "businesslink").style.backgroundColor='#97b7cf';
        document.getElementById(town + "livingherelink").style.backgroundColor='#97b7cf';
        document.getElementById(town + "gettingherelink").style.backgroundColor='#97b7cf';
    }
    if(tab == "business"){
        document.getElementById(town + "whattodo").style.display='none';
        document.getElementById(town + "wheretostay").style.display='none';
        document.getElementById(town + "business").style.display='block';
        document.getElementById(town + "livinghere").style.display='none';
        document.getElementById(town + "gettinghere").style.display='none';
        
        document.getElementById(town + "whattodolink").style.backgroundColor='#97b7cf';
        document.getElementById(town + "wheretostaylink").style.backgroundColor='#97b7cf';
        document.getElementById(town + "businesslink").style.backgroundColor='#a6c5dc';
        document.getElementById(town + "livingherelink").style.backgroundColor='#97b7cf';
        document.getElementById(town + "gettingherelink").style.backgroundColor='#97b7cf';
    }
    if(tab == "livinghere"){
        document.getElementById(town + "whattodo").style.display='none';
        document.getElementById(town + "wheretostay").style.display='none';
        document.getElementById(town + "business").style.display='none';
        document.getElementById(town + "livinghere").style.display='block';
        document.getElementById(town + "gettinghere").style.display='none';
        
        document.getElementById(town + "whattodolink").style.backgroundColor='#97b7cf';
        document.getElementById(town + "wheretostaylink").style.backgroundColor='#97b7cf';
        document.getElementById(town + "businesslink").style.backgroundColor='#97b7cf';
        document.getElementById(town + "livingherelink").style.backgroundColor='#a6c5dc';
        document.getElementById(town + "gettingherelink").style.backgroundColor='#97b7cf';
        
    }
    if(tab == "gettinghere"){
        document.getElementById(town + "whattodo").style.display='none';
        document.getElementById(town + "wheretostay").style.display='none';
        document.getElementById(town + "business").style.display='none';
        document.getElementById(town + "livinghere").style.display='none';
        document.getElementById(town + "gettinghere").style.display='block';
        
        document.getElementById(town + "whattodolink").style.backgroundColor='#97b7cf';
        document.getElementById(town + "wheretostaylink").style.backgroundColor='#97b7cf';
        document.getElementById(town + "businesslink").style.backgroundColor='#97b7cf';
        document.getElementById(town + "livingherelink").style.backgroundColor='#97b7cf';
        document.getElementById(town + "gettingherelink").style.backgroundColor='#a6c5dc';
    }
    
    if(tab == "hideall"){
        document.getElementById(town + "whattodo").style.display='none';
        document.getElementById(town + "wheretostay").style.display='none';
        document.getElementById(town + "business").style.display='none';
        document.getElementById(town + "livinghere").style.display='none';
        document.getElementById(town + "gettinghere").style.display='none';
        
        document.getElementById(town + "whattodolink").style.backgroundColor='#97b7cf';
        document.getElementById(town + "wheretostaylink").style.backgroundColor='#97b7cf';
        document.getElementById(town + "businesslink").style.backgroundColor='#97b7cf';
        document.getElementById(town + "livingherelink").style.backgroundColor='#97b7cf';
        document.getElementById(town + "gettingherelink").style.backgroundColor='#97b7cf';
    }
    
}

function listmore(listing){

    if(document.getElementById("state" + listing).value == "open"){
        document.getElementById("list" + listing).style.display='block';
        document.getElementById("full" + listing).style.backgroundColor='#a6c5dc';
        document.getElementById("state" + listing).value = "close";
    }else if(document.getElementById("state" + listing).value == "close"){
        document.getElementById("list" + listing).style.display='none';
        document.getElementById("full" + listing).style.backgroundColor='#a6c5dc';
        document.getElementById("state" + listing).value = "open";
    }
        
}