var initminical = function(){
    var smartBox = new SmartHoverBox({ //initiate your new class here
        yOffset: 10
        //xOffset: 2, //set your options in here
        //lockX: 'left' //set your options in here
    });
}

window.addEvent('domready', function(){
     initminical();
});

