$(document).ready(function(){
	 $("a#toolselect").click(function(){
	    $("table#membertools").toggle("fast");
	 });
	 $("img#searchbtn").click(function(){
		 $("table#searchoptions").toggle("fast");
	 });
	 $("a.srch").click(function(){
		var text = $("#searchtext").val();
		var search = $(this).id();
		commenceSearch(text, search);
	 });
 });

function commenceSearch(text, search)
 {
	if (search == "sisters")
	{
		location.href = "membersearch.aspx";
	}
	if (search == "friends")
	{
		location.href = "search.aspx?search=" + text + "&type=friends";
	}
	if (search == "groups")
	{
	    location.href = "search.aspx?search=" + text + "&type=groups";
	}
	if (search == "site")
	{
		location.href = "searchcontent.aspx?search=" + text;
	}
	if (search == "web")
	{
		location.href = "http://www.goodsearch.com/Search.aspx?Keywords=" + text;
	}
 }


