
function initialize() {
  var latlng = new google.maps.LatLng(45.421850585500614, 6.64306763022455);
  var myOptions = {
    zoom: 12,
    center: latlng,
    mapTypeId: google.maps.MapTypeId.ROADMAP
  };
  var map = new google.maps.Map(document.getElementById("googlemap"), myOptions);

  var marker = new google.maps.Marker({
        position: latlng, 
        map: map,
        title:"Home Courchevel"
    });   

}

$(document).ready(function(){
	
	$("a",".galerie-fancy").fancybox({
		'zoomSpeedIn': 300,
		'zoomSpeedOut': 300
	});
	
	if ($('#formulaire').size()>0){
   		$('.frm-text input').example(function() {
   		  return $(this).attr('title');
   		},{className: 'dfv'});
    		$('#message-fr').example('Votre message ici', {
   			className: 'dfv'
    		});
    		
   		if (document.location.hash != ""){
   			$("#frm-chalet").attr("value",unescape(document.location.hash.replace("#chalet=", ""))).removeClass('dfv'); 
   		}
   	}
	if ($('#googlemap').size()>0){
		initialize();
	}

});


