$(document).ready(function(){
    var subtitles = [
        'Fanatical about user experience design since <span class="smash">1</span>998.',
        'Obsessed with remarkable customer service since <span class="smash">1</span>990.',
        'Zealous for excellence in art and entertainment.',
        'Awakened by new experiences, new places, and new people.'
    ];
    subtitles.sort(function () {return 0.5 - Math.random()});
    $('#subtitle').html(subtitles[0]).fadeIn();
                
    $('.noclick').click(function() {
        return false;
    });
                
    $('a[title]').qtip({
        position: {
            my: "bottom center",
            at: "top center"
        }
    });
});
