/*	PAX option transfer demo.
*/
pax.load.onloaded( function() {
	
	//	Default simple optiontransfer example
	pax.widget.optiontransfer.init( pax.$('pax.widget.optiontransfer.example1'), {
		options1: [
    		{ 'value': '1', 'text': 'honey cake' },
    		{ 'value': '2', 'text': 'jam donut' },
    		{ 'value': '3', 'text': 'chocolate chip muffin' },
    		{ 'value': '7', 'text': 'Blueberry tart' }
    	]
	} );
	
} );
