var url = document.location.toString();

$(document).ready(function(){
	$('.category').find('dd').hide().end();
	
	$('dt').find('a').toggle(function(){
		$(this).parent().next().animate({ height: 'show', opacity: 'show' }, 'slow');
	},function(){
		$(this).parent().next().animate({ height: 'hide', opacity: 'hide' }, 'slow');
	});

	if (url.match('#')) {
		var anchor = '#' + url.split('#')[1];
		$('.category dt a[href="' + anchor + '"]').click(function () {	
			elementClick = $(this).attr("href")
			destination = $(elementClick).offset().top;
			$("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination}, 1100);
		});
		$('.category dt a[href="' + anchor + '"]').click();
	}
	
	$("#search_keywords").focus(function(){
	    $(this).attr('value','');
	})
});
