function perishableShipWarn() {
	$('#shipping-restriction').modal({onOpen: function(dialog) {
		dialog.overlay.fadeIn('slow', function () {
			dialog.data.hide();
			dialog.container.fadeIn('slow', function () {
				dialog.data.slideDown('slow');
			});
		});
	}});
}

$(document).ready(function() {
	$('input').filter(function() {
		return /^shipType[1-9]i/.test(this.id);
	}).click(function() {
		var intShip = this.id;
		var isPerishable = $('#isPerishable').val();
		if (isPerishable == 'yes') {
			perishableShipWarn();
			var domShip = intShip.replace(/(\d)\w/, '$1d');
			$('#'+domShip).click();
			$('#'+domShip).mouseup();
		}
	});
});
