$(document).ready(function(){

    //create a bubble popup for each DOM element with class attribute as "text", "button" or "link" and LI, P, IMG elements.
    $('.text,p.paragraph').CreateBubblePopup({
                  selectable: true,
                  position : 'top',
                  align   : 'center',
                  
                  innerHtml: '<ul id="bread">         \
                        <li><a href="#">Español</a> | </li>  \
                        <li><a href="#">Ingles</a> | </li>  \
                        <li><a href="#">Portugues</a> | </li><ul>   \ ',
                        
                  innerHtmlStyle: {
                            color:'#FFFFFF', 
                            'text-align':'left'
                          },
                                    
                  themeName:   'azure',
                  themePath:   '/images/jquerybubblepopup-theme'
                   

                });
});

