// JavaScript Document

	hs.graphicsDir = '/Core3/addons/highslide/graphics/';
    hs.outlineType = 'rounded-mint';
    hs.outlineWhileAnimating = true;
	hs.align = 'center';
	hs.showCredits = false;
	hs.dragByHeading = false;
	hs.width = 410;
	hs.allowMultipleInstances = false;
hs.lang = {
	loadingText : 'Loading...',
	loadingTitle : 'Click to cancel',
	focusTitle : 'Click to bring to front',
	fullExpandTitle : 'Expand to actual size',
	creditsText : 'Powered by <i>Highslide JS</i>',
	creditsTitle : 'Go to the Highslide JS homepage',
	previousText : 'Previous',
	nextText : 'Next', 
	moveText : '',
	closeText : 'Close', 
	closeTitle : 'Close (esc)', 
	resizeTitle : 'Resize',
	playText : 'Play',
	playTitle : 'Play slideshow (spacebar)',
	pauseText : 'Pause',
	pauseTitle : 'Pause slideshow (spacebar)',
	previousTitle : 'Previous (arrow left)',
	nextTitle : 'Next (arrow right)',
	moveTitle : '',
	fullExpandText : 'Full size',
	number: 'Image %1 of %2',
	restoreTitle : 'Click to close image, click and drag to move. Use arrow keys for next and previous.'
};


	$(document).ready(function(){
							   
		$('#CopyFromBilling').click(function(){
							
			$('#Delivery_Title').val($('#Title').val());
			$('#Delivery_FirstName').val($('#FirstName').val());
			$('#Delivery_LastName').val($('#LastName').val());
			$('#Delivery_Address1').val($('#Billing_Address1').val());
			$('#Delivery_Address2').val($('#Billing_Address2').val());
			$('#Delivery_City').val($('#Billing_City').val());
			$('#Delivery_County').val($('#Billing_County').val());
			$('#Delivery_Postcode').val($('#Billing_Postcode').val());
			
		});
							   
	});
