$(document).ready(function()
{
	$("#tab-location").click(function()
		{
			$("#tag-cloud-header").removeClass();			
			$("#tag-cloud-header").addClass("locations");			
			$("#top-things-location").show();
			$("#top-things-category").hide();

		});
	
	$("#tab-category").click(function()
		{
			$("#tag-cloud-header").removeClass();
			$("#tag-cloud-header").addClass("categories");
			$("#top-things-location").hide();
			$("#top-things-category").show();
		});
});

