$(document).ready(function(){
	
	// variable permettant de retourner dans la bonne salle au retour sur la page
	var hash = window.location.hash.replace(/#/, '');
	// initialisation gallery
	animation.init(hash);

	
	// initialisation slider
	var length = $( " #bg_slider > div " ).length;
	slider.init( length );
	
	// initialisation video
	video.init();
	
	// initialisation envoyer à un collaborateur
	/*
	$('#collaborateur_nom').bind('blur', function(){
		var location = window.location;
		$('#collaborateur_page').val(location);
		alert($('#collaborateur_page').val());
	});
	*/
	
	// initialisation lightbox
	$('a[rel=colorbox]').colorbox(); 
	$('a[rel=collaborateur]').colorbox();
	
	// effet page acceuil
	$('.accueil-bg-img').fadeTo(0, 0);
	
	$('.accueil-item').hover(
		function(){							  
			$(this).parent().children('.accueil-bg-img').fadeTo(500, 1);
		}, 
		function(){
			$(this).parent().children('.accueil-bg-img').fadeTo(600, 0);
		}
	);
	
	// bouton retour pages cas-clients
	$('#cas-client_retour').click(function(event){
		event.preventDefault();
		window.history.back();
	});
	
	
	// Google Map
	google.maps.event.addDomListener(window, 'load', comelliMap.init);
	$('#depart').val('Saisissez votre adresse de départ');
	$('#depart').click(function(){
		$(this).val('')
			   .css('color', '#333333');
	});
	
	$('#submit_depart').click(function(event){
		event.preventDefault();
		comelliMap.setItineraire($('#depart').val());					   
	});
});
