jQuery.fn.halvrSplitButton || (function(){
    jQuery.fn.halvrSplitButton = function() {
        return this.each(function(index, buttonList){
            var $buttonList = jQuery(buttonList);
            
            var $menu = $buttonList.find('ul');
            $menu.hide();

            $buttonList.hover(function() {$menu.show()}, function(){$menu.hide()});
        });
    }
})();

jQuery(document).ready(function(){
    jQuery('.splitButton').halvrSplitButton();
});
