
    /*
     * Author: Karl O'Leary
     * Company: Emagine Media, http://www.emagine.ie
     * Description: Specific logic for site
     *
     * Updated:
     * - 20090721.1312, Karl, added the google map
     * - 20090623.1051, Karl, added the pngfix  fix
     * - 20090520.1043, Karl, created
     */

    /*
     * Script variables.
     */
    var google_map = null;

    /*
     * On load code.
     */
    $(document).ready(function() {
	$('*').pngFix();
        
        if (jQuery.url.attr("path")=="/contact-us/google-map/") {
            google_map = googleMapsLoad('google_map', 52.736292, -7.426758, 13);
            googleMapsAddMarker(google_map, 52.736292, -7.426758, '<p><strong>CBT GRoup Training Center</strong>,<br/>Cashel Road Industrial Estate,<br/>Clonmel, Co. Tiperary</p>');
        }
    });

    /*
     * On close code.
     */
    $(window).unload(function () {        
        if (jQuery.url.attr("path")=="/contact-us/google-map/")
            googleMapsUnload();
    });
