var authorDropStartingHeight;

$(document).ready(function()
{
	autoFill('#s', 'Search', '#666', '#000');
	$('#author-drop').addClass('setheight');
	authorDropStartingHeight = $('#author-drop').height();
	if(authorDropStartingHeight < $('#author-drop div').height())
	{
		$('#show-authors').addClass('block');
	}
	
	$('img').load(function()
	{
		if($(this).height() < $(this).width()) $(this).parent().addClass('short');
	});
	
	$('#show-authors').click(function()
	{
		if($('#author-drop').height() > authorDropStartingHeight)
		{
			$('#author-drop').animate({ 'height' : authorDropStartingHeight + 'px' }, 'fast');
			$(this).removeClass('open');
		}
		else
		{
			var divHeight = $('#author-drop div').height();
			if($.browser.msie && $.browser.version=="6.0") divHeight += 115;
			$('#author-drop').animate({ 'height' : divHeight + 'px' }, 'fast');
			$(this).addClass('open');
		}
		return false;
	});
	
	$('#event_chooser').change(function()
	{
		window.location = '/category/events/' + $(this).val() + '/';
	});
});
