var Matrix = function ( options ) {
var html = '';
$( options.matrix ).each(function () {
html += '<div>';
$(this).each(function ( i ) {
var s = 'background: ' + (this == 0 ? options.colorDisabled || '#ddd' : options.colorEnabled || '#555') + '; ' + (i === 0 ? 'clear: both;' : '');
html += '<div style="width: ' + (options.width || 20) + 'px; height: ' + (options.height || 20) + 'px; float: left; ' + s + '"></div>';
});
html += '</div>';
});
$( options.to )[options.method || 'append']( html );
return html;
};