﻿function showRegions() 
{
    $(".tag_cloud .t0").css("display", "inline");
    $(".table_cities .t0").css("display", "block");
    
    $(".show_regions").css("display", "none");
    $(".hide_regions").css("display", "block");
}

function hideRegions()
{
    $(".t0").css("display", "none");
    
    $(".show_regions").css("display", "block");
    $(".hide_regions").css("display", "none");
}

function showLocations() {
    $(".popcols .t0").css("display", "inline");

    $(".popcols .show_regions").css("display", "none");
    $(".popcols .hide_regions").css("display", "block");
}

function hideLocations() {
    $(".popcols .t0").css("display", "none");

    $(".popcols .show_regions").css("display", "block");
    $(".popcols .hide_regions").css("display", "none");
}
