jQuery(document).ready(function($){
	$("#signin_link").click(function(){$("#login_panel").fadeIn(200);});
	$("#member_link").click(function(){$("#member_panel").fadeIn(200);});
	$("#panel_close").click(function(){$("#login_panel").fadeOut(200);if (jQuery.browser.msie&&parseInt(jQuery.browser.version)==6) $('#login_panel').hide();});
	$("#member_close").click(function(){$("#member_panel").fadeOut(200);if (jQuery.browser.msie&&parseInt(jQuery.browser.version)==6) $('#member_panel').hide();});
});

jQuery(document).ready(function($){
	$("input.id, input.password").focus(function(){$(this).css({"color":"#000", "border-color":"#5aa409"});});
});
jQuery(document).ready(function($){
	$("input.id, input.password").blur(function(){$(this).css({"color":"#9c9c9c", "border-color":"#aaa"});});
});

function completeLogin(ret_obj, response_tags, params, fo_obj) {
	var url =  current_url.setQuery('act','');
	location.href = url;
}
