
module("Fotobox.UI.Event", function() {

function fire(fboxEvent) {
if (!fboxEvent.params) {
fboxEvent.params = {};
}
fboxEvent.$target.trigger({ type: fboxEvent.type, params: fboxEvent.params });
}
return {
fire: fire
};
}());
