$(document).ready(function() {
  $("div#carrouselHome ul").hrzAccordion(
  {eventTrigger: "mouseover",
  openOnLoad   : "1",
  openSpeed : 1000,
  handlePositionArray	: "left,left,left",
  fixedWidth: "629"
  });
  
  $('input[type="text"], textarea').addClass("idleField");
         		$('input[type="text"], textarea').focus(function() {
         			$(this).removeClass("idleField").addClass("focusField");
      		    if (this.value == this.defaultValue){ 
      		    	this.value = '';
  				}
  				if(this.value != this.defaultValue){
  	    			this.select();
  	    		}
      		});
      		$('input[type="text"], textarea').blur(function() {
      			$(this).removeClass("focusField").addClass("idleField");
      		    if ($.trim(this.value) == ''){
  			    	this.value = (this.defaultValue ? this.defaultValue : '');
  				}
      		});
  
});

/* Google Map */
function initialize() {
    var myOptions = {
        zoom: 16,
        center: new google.maps.LatLng(45.502147,-73.56301),
        mapTypeControl: false,
        mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    var map = new google.maps.Map(document.getElementById("contactMap"), myOptions);

    newMarker = new google.maps.Marker({
        position  : new google.maps.LatLng(45.502147,-73.56301),
        map       : map, 
        draggable : false
    });
}

