// JavaScript Document
function EventInit(){ }
 
$(document).ready(function(){
	
	/* ************************** */
	/*	SLIDER NOS VOYAGES	    	*/
	/* ************************** */
	$('#photos').galleryView({
		panel_width: 800,
		panel_height: 297,
		frame_width: 100,
		frame_height: 100,
		transition_speed: 1500,
		transition_interval: 5000
	});
	
	
	/* ************************** */
	/*	SLIDER INDEX				    	*/
	/* ************************** */
	$('#content_slider').galleryView({
			panel_width: 926,
			panel_height: 227,
			transition_speed: 1500,
			transition_interval: 5000,
			nav_theme: 'dark',
			border: '0',
			pause_on_hover: true
	});
	
	
	/* ************************** */
	/*	PHOTOS VOYAGES INDEX    	*/
	/* ************************** */	
	$('.photo_voyage_left').mouseover(function(){
		$('.photo_voyage_left > .filter_photo').css('display','block');																
	});
	
	$('.photo_voyage_left').mouseout(function(){
		$('.photo_voyage_left > .filter_photo').css('display','none');																
	});

	$('.photo_voyage_right').mouseover(function(){
		$('.photo_voyage_right > .filter_photo').css('display','block');																
	});
	
	$('.photo_voyage_right').mouseout(function(){
		$('.photo_voyage_right > .filter_photo').css('display','none');																
	});
	
	/* TOOLTIP CAPSULES */
	var _timer;
	$('#capsuleContent').hover(function(){;
		clearTimeout(_timer);
		$('#capsuleOver').stop().animate({height: '36px', paddingTop: '15px'}, {queue: false, duration: 400});
    },
    function(){		
		_timer = setTimeout("$('#capsuleOver').stop().animate({height: '0px', paddingTop: '0px'}, {queue: false, duration: 250});",500);
		//$('#capsuleOver').stop().animate({height: '0px', paddingTop: '0px'}, {queue: false, duration: 250});		
    });
	

	$('.capsuleContentOver').hover(function(){;
		var id_objet = $(this).attr('id');
		$('#'+id_objet+'_over').css('display','block');
    },
    function(){		
		var id_objet = $(this).attr('id');
		$('#'+id_objet+'_over').css('display','none');	
    });
		
	
	/* ************************** */
	/*	IAMGE HOVER ACTUALITES   	*/
	/* ************************** */	
	$('.image_actualite_mini > img').mouseover(function(){
		var src_image_mini = $(this).attr('src');
		$(this).parent().parent().children('.image_actualite_medium').children('img').attr('src', src_image_mini.replace('/mini/', '/medium/'));
	});
	
	/* ************************** */
	/*	IMAGE OVER NOS VOYAGES  	*/
	/* ************************** */
	
	$('.bg_continent').hover(function(){
		$(this).find('img').stop().animate({marginTop: '-165px'}, {queue: false, duration: 250});
	},
    function(){	
		$(this).find('img').stop().animate({marginTop: '0px'}, {queue: false, duration: 450});
	});
	
});