
/******************************************************************************************************************/
// ON DOCUMENT LOAD...
/******************************************************************************************************************/

$(function(){
	// Iinitializations
	$('#login').height('5px');
	$('#menu LI UL').fadeTo(10, 0.9);
	
	// Some Fx handle
	$('#login-button').toggle(function(){
		h = $('#login .wrap').height() + 20;
		$('#login').animate({height: h}, 500);
	}, function(){
		$('#login').animate({height:'5px'}, 300);
	});
	
	$('#search .textbox').focus(function(){
		$(this).attr('value','');
	});
	
	// Adjust blocks height
	max = $('#archive .block:eq(0)').height();	
	$('.block').each(function(){
		if (max < $(this).height()) max = $(this).height();
	});
	$('.block').height(max);
});