var valDis = ':' + $v(P1088_SHUTTLE_1_DISABLED_ITEMS) + ':';
$("#P1088_SHUTTLE_1 option").each(function () {
var valThis = ':' +$(this).val() + ':';
if (valDis.indexOf(valThis) > -1) {
$(this).attr('disabled','disabled');
$(this).attr('style','background-color:#CCCCCC;');
}
});
$('#P1088_SHUTTLE_1_MOVE_ALL').replaceWith('<a onclick="shuttleMove(\'RIGHT\',\'LEFT\');"><button id="P1088_SHUTTLE_1_MOVE_ALL" class="a-Button a-Button--noLabel a-Button--withIcon a-Button--small a-Button--noUI a-Button--shuttle" type="button" title="Move All" aria-label="Move All"> <span class="a-Icon icon-shuttle-move-all" aria-hidden="true"></span></button></a>');
$('#P1088_SHUTTLE_1_REMOVE_ALL').replaceWith('<a onclick="shuttleMove(\'LEFT\',\'RIGHT\');"><button id="P1088_SHUTTLE_1_REMOVE_ALL" class="a-Button a-Button--noLabel a-Button--withIcon a-Button--small a-Button--noUI a-Button--shuttle" type="button" title="Remove All" aria-label="Remove All"> <span class="a-Icon icon-shuttle-remove-all" aria-hidden="true"></span></button></a>')