function menu_btn_hover(){
	$(this).find('.menu_btn_left').toggleClass('menu_btn_left_on');
	$(this).find('.menu_btn_center').toggleClass('menu_btn_center_on');
	$(this).find('.menu_btn_right').toggleClass('menu_btn_right_on');
}

$(document).ready(function(){
	// set menu hover actions
	$('.menu_btn:not(.last)').hover(menu_btn_hover, menu_btn_hover);

	// set content div max height
	if ($('.content_center_bar').height() < $('.content_left_bar').height())
		$('.content_center_bar').height(50+Math.max($('.content_center_bar').height(), Math.max($('.content_left_bar').height(), $('.content_right_bar').height())));  

	// clear login form on focus
	$('#login_form #login, #login_form #password').focus(function(){$(this).val('')});
});
