$(document).ready(function() {
  
  var map = new GMap2(document.getElementById('map'));
  
  $("#map").append("<p id=\"store_title\"></p>");
  

  var cc_jockey_plaza_location = new GLatLng(-12.085611,-76.975965);
  var cc_jockey_plaza_marker = new GMarker(cc_jockey_plaza_location);
  map.addOverlay(cc_jockey_plaza_marker);
  
  $("#store_list").append("<li><a href=\"#\" id=\"cc_jockey_plaza_location\">iStore CC Jockey Plaza</a></li>");
  $("#cc_jockey_plaza_location").click(
    function() {map.panTo(cc_jockey_plaza_marker.getPoint());
    $("#store_title").html("iStore CC Jockey Plaza");
  });
  
  

  var cc_plaza_san_miguel_location = new GLatLng(-12.077806,-77.082481);
  var cc_plaza_san_miguel_marker = new GMarker(cc_plaza_san_miguel_location);
  map.addOverlay(cc_plaza_san_miguel_marker);
  
  $("#store_list").append("<li><a href=\"#\" id=\"cc_plaza_san_miguel_location\">iStore CC Plaza San Miguel</a></li>");
  $("#cc_plaza_san_miguel_location").click(
    function() {map.panTo(cc_plaza_san_miguel_marker.getPoint());
    $("#store_title").html("iStore CC Plaza San Miguel");
  });
  
  



  map.setCenter(cc_jockey_plaza_location, 14);
  $("#store_title").html("iStore CC Jockey Plaza");


});
