// -------------------------------------------------------------
//
// -------------------------------------------------------------
$(document).ready(
	function ()
	{
		$("#topics-list, #view-all-topics").change(handleTopicListChange);
		
		$("#organizations-list, #view-all-organizations").change(handleOrganizationListChange);

		$("#search a.submit").click(handleSearchSubmit);
		$("#search").submit(handleSearchSubmit);
	}
);

// -------------------------------------------------------------
//
// -------------------------------------------------------------
function handleTopicListChange ()
{
	if ($(this).val())
	{
		self.location = "topics.php#item-" + $(this).val();
	};
};

// -------------------------------------------------------------
//
// -------------------------------------------------------------
function handleOrganizationListChange ()
{
	if ($(this).val())
	{
		self.location = "organizations.php#item-" + $(this).val();
	};
};

// -------------------------------------------------------------
//
// -------------------------------------------------------------
function handleSearchSubmit ()
{
	var query = $("#search input.text").val();
	
	self.location = "search.php?q=" + query;
	
	return false;
};
