
jQuery(function ($) {
	$('#show_map .basic').click(function (e) {
            $('#BB_map').modal('');
                var myOptions = {
                  center: new google.maps.LatLng(38.952, -82.008),
                  zoom: 10,
                  mapTypeId: google.maps.MapTypeId.ROADMAP
                };
                var map = new google.maps.Map(document.getElementById('BB_map'),
                    myOptions);
	});
	return false;
});
