Put Marker/Bubble in JQuery Map

Hi Guys,

I want to put one of those bubbles as a marker containing the address to the location in my JQuery Map. Can you help?

http://www.galileedetroit.org/index2.php


$(document).ready(function(){
    $("#tabs").tabs();
    var marker;
    var map;

    var mapOptions = {
        zoom: 15,
        center: new google.maps.LatLng(42.436570, -83.01364),
        mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    map = new google.maps.Map(document.getElementById('map'), mapOptions);
    marker = new google.maps.Marker({
        map:map,
        animation: google.maps.Animation.DROP,
        position: location
    });

});

As always, the help and lessons are GREATLY appreciated!

G