jquery.cycle2.min.js
	This library uses a duplicated slide stripped of id, name and rel tags to calculate its responsive size
	but removing the id looses the width and height so it looks buggy.
	Bugfix
		Replaced:
				e.removeAttr("id name rel").find("[id],[name],[rel]").removeAttr("id name rel")
		With:
				e.removeAttr("name rel").find("[name],[rel]").removeAttr("name rel")

Modifications for jQuery 1.9
	jquery.cycle.all.js
		Replaced:
			$.browser.msie
		With:
			zenario.browserIsIE()
		Replaced:
			$.browser.mozilla
		With:
			zenario.browserIsFF()
		Replaced:
			$.browser.opera
		With:
			zenario.browserIsOpera()


jquery.nestable.js
	Added a new function just after serialize:
        serialize_zenario_modified_version: function()
        {
            var parentId = 0,
                list  = this,
                output = {0: []},
                step  = function(level, parentId, output)
                {
                    var items = level.children(list.options.itemNodeName);
                    items.each(function()
                    {
                        var li   = $(this),
                            item = $.extend({}, li.data()),
                            sub  = li.children(list.options.listNodeName);
                        if (sub.length) {
                            step(sub, item.id, output);
                        }
						if (!output[parentId]) {
							output[parentId] = [];
						}
						output[parentId].push(item.id);
                    });
                };
            step(list.el.find(list.options.listNodeName).first(), parentId, output);
            return output;
        },
	
	Added events to the expandItem() and collapseItem() functions:
		this.el.trigger('expandItem');
		this.el.trigger('collapseItem');	
	
	Modification to allow calling the expandItem() and collapseItem() functions:
		Replace:
    $.fn.nestable = function(params)
    	With:
    $.fn.nestable = function(params, li)
    	
    	Replace:
                    retval = plugin[params]();
        With:
                    retval = plugin[params](li);


jquery.selectboxes.js
 Rewrite some deprecated code
  Replace:
	if($(to).size() == 0) return this;
  With:
	if($(to).length == 0) return this;

	
