﻿
function setupSearchForm()
{
	$(".Label").Tooltip({track: true, showBody: " - "});
	//$("#Search").corner();
	if ($("#SearchFrm").css("display") == "block") {
		$("#SearchBtn").css("display","none");
	} else {
		$("#SearchBtn").css("display","block");
		$("#Search").css("width", "150px");
	}
	$("#SearchBtn a").click(function() {toggleSearchForm()});
}

function toggleSearchForm()
{
	if ($("#SearchFrm").css("display") == "block") {
		$("#SearchBtn").show("fast");
		$("#SearchFrm").hide("fast");
		$("#Search").css("width", "150px"); 
	} else {
		$("#SearchBtn").hide("fast");
		$("#Search").css("width", "100%"); 
		$("#SearchFrm").show("slow");
	}
}

$(document).ready(function(){
	$("#right_sidebar_close a").click(function(){
		if ($("#right_sidebar").css("display") == "block") {
			$("#right_sidebar").css("width", "0px").toggle();
			$("#contentleft").css("width", "730px");
			//$("#contentleft").animate({width: "730px"});
		} else {
			//$("#contentleft").animate({width: "520px"});
			$("#contentleft").css("width", "520px");
			$("#right_sidebar").css("width", "210px").toggle();
		}
	});
});