/**
 * Sign up form javascript
 * @author Kevin Dew <kev@redbullet.co.uk>
 * @copyright Kevin Dew 2008
 */

window.addEvent('domready', function()
{
        if(!$('c_as_b'))
		return;
	
        $('c_as_b').addEvent('click', function()
	{
		if(!$('billAddCont'))
			return;
		
		if($('c_as_b').checked)
		{
			$('billAddCont').removeClass('show');
			
		}
		else
		{
			$each(['b_name', 'b_address_1', 'b_address_2', 'b_address_3', 'b_address_4', 'd_address_5', 'b_town', 'b_county', 'b_postcode', 'b_country'],
			function(id)
		        {
				if($(id))
					$(id).set('value', '');
			});
			$('billAddCont').addClass('show');
		}
		
		return;
	});		

	return;	
});

