var settings = {
                //height of sphere container
                height: 500,
                //width of sphere container
                width: 550,
                //radius of sphere
                radius: 150,
                //rotation speed
                speed: 2.0,
                //sphere rotations slower
                slower: 0.97,
                //delay between update position
                timer: 10,
                //dependence of a font size on axis Z
                fontMultiplier: 25,
                //tag css stylies on mouse over
                hoverStyle: {
                    border: 'none',
                    color: '#0b2e6f'
                },
                //tag css stylies on mouse out
                mouseOutStyle: {
                    border: '',
                    color: ''
                }
            };
			
            $(document).ready(function(){
                $('#tagoSphere').tagoSphere(settings);
            });

