var authorDropStartingHeight;

$(document).ready(function()
{
	autoFill('#s', 'Search', '#666', '#000');
	$('#author-drop').addClass('setheight');
	authorDropStartingHeight = $('#author-drop').height();
	if(authorDropStartingHeight < $('#author-drop ul').height())
	{
		$('#show-authors').addClass('block');
	}
	
	$('.entry_author_image 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
		{
			$('#author-drop').animate({ 'height' : $('#author-drop ul').height() + 'px' }, 'fast');
			$(this).addClass('open');
		}
		return false;
	});
	
	$('#event_chooser').change(function()
	{
		window.location = '/category/events/' + $(this).val() + '/';
	});
	
	// IFRAME IE6 FIX
	var theframes = document.getElementsByTagName('iframe');
	for(var i = 0; i < theframes.length; i++)
	{
		theframes[i].setAttribute("allowTransparency","true");
	}
});
