




function getActiveStylesheet() 
{
	var i, a;
	for ( i=0; (a = document.getElementsByTagName("link")[i]); i++ ) 
	{
		if ( a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title") && !a.disabled ) 
		{
			return a.getAttribute("title");
		}
	} 
}





function DeliveryAddress_copyBillingAddress()
{
	$('input', '#customerAddressWrap').each(function()
	{
		$('#' + $(this).attr('id').replace('customer_', 'da_')).val($(this).val());
		
	});
	// $('#da_name').val( $('#customer_name').val() );
}




