jQuery(document).ready( function($) {

	//Add in our print button
	$('#print-button').after('<input type="submit" id="label-print-button" value="Print Shipping Label" class="button" />');
	
	//Modify the css of the existing button
	$('#print-button').css({'float' : 'right', 'margin-left' : '5px', 'position' : 'relative', 'right' : '0'});
	
	//Give out new button some css
	$('#label-print-button').css({'float' : 'right'});
	
	//Attach print label function to button
	$('#label-print-button').click(function () {
	
		alert(address_label_string);
		//PrintLabel(address_label_string)
	});

});