
//==================================================================================================================
//                                                                                                    document ready
//==================================================================================================================
// 
	$(document).ready(function(){
			
		
		
		$(document).unbind('keypress'); // cf : http://stackoverflow.com/questions/492865/jquery-keypress-event-not-firing
		$(document).keydown(function (e) {
				if (e.which == 39) { // on a appuyé sur -->
					var next = $(".guidedTour-section").find("a.guidedTour-next").attr("href");
					window.location.href = next;
				}
				else
				if (e.which == 37) { // on a appuyé sur <--
					var prev = $(".guidedTour-section").find("a.guidedTour-prev").attr("href");
					window.location.href = prev;
				}
			});
		
 	});
	
	
	
	
	
	
	
	
	