// JavaScript Document
<!--
jQuery(function(){
		   jQuery("#toggleLogin").toggle(function(){
		        jQuery("#alllogin").parent("div").animate({ height : 36 } , 520 );
				jQuery("#alllogin").animate({marginTop : 0 } , 500 );
				jQuery(this).blur();
		   },function(){
			    jQuery("#alllogin").parent("div").animate({ height : 0 } , 500 );
				jQuery("#alllogin").animate({marginTop : -36 } , 520 ); 
				jQuery(this).blur();
		   });
		})
//-->
