EventControl Demo$('.eventcontrol').EventControl({ oncreate: function(item, element) { // Called when creating the item. // Can set attributes on the element here, // for example: element.css('color', 'red'); }, onhover: function(item, element, event, inout) { // Called when mouse hovers over an item // inout is 'in' when entering, and 'out' when exiting. }, onclick: function(item, element, event)

