/*
* PLAN DE VILLE : CHATOU
* Version 1.0
* Creation date: Fevrier 2010
* Author: Dynamik Informatik - PELLET Alexandre - www.dynamik-informatik.fr
* Author email: pellet.alexandre@gmail.com
*/

var tmpl_info_monument = null;


/**
 * Methode qui initialise tous les templates utilisés dabs l'application
 */
function initTemplates ()
{
	initTemplateInfoMonument ();
	
}




function initTemplateInfoMonument()
{
	var h = jQuery('#bubble-place').html ();
	tmpl_info_monument = jQuery.template ( h );	
}



