// JavaScript Document
var active_link = false;
var active_group = false;

$( document ).ready(
	function()
	{
		
		$( '#distributor_login_link' ).click(
			function()
			{
				
				$('#login_fields').animate( { opacity: 'show', height: 'show' }, 500 );
				
			}
		);
		
		$( '#distributor_login_close_link' ).click(
			function()
			{
				
				$('#login_fields').animate( { opacity: 'hide', height: 'hide' }, 500 );
				
			}
		);
		
		
		
	}	
);
