$().ready(function(){
	var contentHeight = $("div.content").height();
	if (contentHeight > $("#lmdiv").height()) {
		$("#lmdiv").height(contentHeight);
	}

	$('#lm li a.collapsed').each(function() {$(this).next().hide();	});
	$('#lm li a').click(function() {
		if ($(this).next().is("ul")) {
			$(this).next().slideToggle('normal');
			$(this).toggleClass('collapsed');
		}
	});

	$("#lm li ul a").each(function(i) {
		var s_ = $(this).attr('href');
		if (s_ == location.pathname) {
			$(this).addClass('current');
		}
	});
	
	$("input[name='contentType']").change(function() {$('#searchForm').attr('action', "/search/" + $("input[name='contentType']:checked").val() + "/"); });
	$("#q2").focus(function() {	if ($(this).attr("class") == 'hint') { $(this).attr('class', ''); $(this).val(''); } });
	$("#q2").blur(function() { if ($(this).val() == '') {$(this).attr('class','hint');	$(this).val('Search trestlewood.com (e.g., barnwood)');}});
});
