function copyShippingInfo()
{
	el1 = document.getElementById('shipto_address1');
	el2 = document.getElementById('shipto_address2');
	el3 = document.getElementById('shipto_address3');
	el4 = document.getElementById('shipto_city_state_postal');

	el5 = document.getElementById('billto_address1');
	el6 = document.getElementById('billto_address2');
	el7 = document.getElementById('billto_address3');
	el8 = document.getElementById('billto_city_state_postal');
	
	el5.value = el1.value;
	el6.value = el2.value;
	el7.value = el3.value;
	el8.value = el4.value;
}

/* when the DOM is ready */
if (typeof SqueezeBox!="undefined") {
	window.addEvent('domready', function()
	{
		SqueezeBox.assign($$('a[rel=lightbox]'), {
			size: {x: 650, y: 550},
			handler:'iframe'
		});

		SqueezeBox.assign($$('a[rel=boxed]'));
	});
}

// initialise plugins
jQuery(function(){
	jQuery('ul.sf-menu').supersubs({
		minWidth:		12,
		maxWidth:		14,
		extraWidth:		1

	}).superfish({
		dropShadows:	true
	
	});
});

