$(document).ready(function(){
    $('#tagsphere').tagSphere({
        //height of sphere container
        height: 200,
        //width of sphere container
        width: 205,
        //radius of sphere
        radius: 70,
        //rotation speed
        speed: 3,
        //sphere rotations slower
        slower: 0.1,
        //delay between update position
        timer: 50,
        //dependence of a font size on axis Z
        fontMultiplier: 15,
        //tag css stylies on mouse over
        tagCSSOver: {
            border: '',
            color: ''
        },
        //tag css stylies on mouse out
        tagCSSOut: {
            border: '',
            color: ''
        }
    });
});
