/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

$(document).ready(function(){


    if($("div#corpmap").length != 0) {
        $("div#corpmap").gMap({
            markers: [
                {
                    address: region+city,
                    html: description,
                    popup: 0
                }
            ],
            address: region+city,
            zoom: 14
        });
    }

});

