function initLocations(){
    if (GBrowserIsCompatible()) {
        $('#lbInner .gmap').each(function() {
            var address = $(this).children('span').text();
            var latlong = address.split(',');
            var map = new GMap2($(this).get(0));
            var coords = new GLatLng(latlong[0], latlong[1])
            map.setCenter(coords, 13);
            map.addOverlay(new GMarker(coords));
        });
    }
};
	
$(document).ready(function(e){
    initLightBox(initLocations);
    if(isIE6){
        $('.locations a').mouseover(function(){
            $(this).children('b').show();
        });
        $('.locations a').mouseout(function(){
            $(this).children('b').hide();
        });
    }
    
});


