/**
 * When the DOM has finished loading...
 */
$(function(){    
    // Insert rotating globe animation
    if ($('#flash')) {
        swfobject.embedSWF("Assets/Flash/Globe.swf", "flash", "332", "197", "9.0.0", "Assets/Flash/expressInstall.swf");
    }
    
    // Create an empty Array to store tool tip text
    var arr = [];
    
    // Loop through all relevant elements and push text to the tool tip Array
    $.each($('#languages img'), function(){
        //
        var title = this.title;
        var items = title.split(': ');
        arr.push('<strong>' + items[0] + ':</strong><br>' + items[1]);
    });
    
    // Loop through all relevant elements again and this time assign the text as a tool tip
    $.each($('#languages a'), function(i){
        $(this).simpletip({ 
            content: arr[i],
            position: ["0", "-30"]
        });
    });
});
