(function(){
    
    var options = {
        item : $('.broker-block .item')
    };
    
    var methods = {

        bioShow : function()
        {
            $(".bio", this).show();
        },
        
        bioHide : function()
        {
            $(".bio", this).hide();
        }
        
    }
    
    //Binding
    options.item.live( 'mouseover', methods.bioShow );
    options.item.live( 'mouseout', methods.bioHide );
})();

