i am using http://aehlke.github.com/tag-it/ in my code how to bind with viewmodel
html
<ul data-bind='jqueryui: "tagit",foreach: Tags' >
            <li class="tagit-choice ui-widget-content ui-state-default ui-corner-all" data-bind='with: $data'>
                <span class="tagit-label" data-bind='text: $data'></span>
                <a class="tagit-close">
                    <span class="text-icon">×</span>
                    <span class="ui-icon ui-icon-close"></span>
                </a>
                <input type="hidden" name="item[tags][]" data-bind='value: $data'  style="display: none;">
            </li>
            </ul>
Js code
function AppViewModel() {
var self = this;
function Tag(data) {
            this.Name = data;
        }
self.Tags = ko.observableArray([
            new Tag('red'),
            new Tag('blue'),
            new Tag('green')
        ]);
 }
// Activates knockout.js
ko.applyBindings(new AppViewModel());
Thanks in advance for your assistance!