function initialize() {
	var myLatLng = new google.maps.LatLng(47.0764752, 2.4178524);
	var myOptions = {
		zoom: 15,
		center: new google.maps.LatLng(47.07874895270096, 2.4196119291137608),
		mapTypeId: google.maps.MapTypeId.ROADMAP
	}

	var map = new google.maps.Map(document.getElementById('map_canvas'), myOptions);
	var image = 'http://www.google.com/mapfiles/marker.png';
	var marker = new google.maps.Marker({
		position: myLatLng,
		map: map,
		icon: image
	});
	var infowindow = new google.maps.InfoWindow({
		content: '<b>HOTEL LES TILLEULS</b><br />7 place de la pyrotechnie<br /> 18000 BOURGES'
	});
	infowindow.open(map,marker);
}

$(document).ready(function() {
	initialize();
		
	$("#formContact").validate({
		rules: {
			nom: {
				required: true
			}, 
			prenom: {
				required: true	
			},
			email: {
				required: true	
			},
			commentaires: {
				required: true	
			}
		}
	});
});
