﻿jQuery(document).ready(function () {
   jQuery('.google-map').click(function () {
      var tIframe = jQuery('<iframe frameborder="0" scrolling="no" width="100%" height="' + jQuery('img', this).height() + 'px"></iframe>');
      tIframe.attr('src', this.href);
      jQuery(this).replaceWith(tIframe);
      return false;
   });
});

