$(document).ready(function(){
  
	/********************************/
	/*******  Gestion du Menu *******/
	/********************************/
	

	$('#nav .element').bind("mouseover", function(){
		$(this).addClass('hover').find('.detail').fadeIn("slow");
	});
	
	$('#nav .element').bind("mouseleave", function(){
		$(this).removeClass('hover').find('.detail').fadeOut("slow");
	}); 
	

	
	/********************************/
	/**********  Caroussel **********/
	/********************************/
	
	if ($("#colCaroussel").length) {
		$("#colCaroussel").easySlider({
			vertical: true,
			prevId: "prev",
			prevText: "Previous",
			nextId: "next",	
			nextText: "Next",
			controlsShow: false
		});
	}
	
	
	$(".actu").click(function() {
		var elem = $(this).attr('id');
		var id = elem.split('-');
		//alert($(this).document.location);
		
		 /*$.ajax({
			   type: "GET",
			   url: "/telechargez-la-plaquette-du-mondial-du-tourisme-2010--actualites-59.html",
			   //data: "name=John&location=Boston",
			   success: function(msg){
			     alert("ok");
			   }
		 });*/



		/*alert(id[1]);
		$.get("http://www.google.fr", { id: ''+id[1], test: "azerty" },
		function(data){
			alert(data);
		    alert(data.id);
		    console.log(data.test);
		  }, "html");*/
	});



	/*****************************/
	/*******  Ils Exposent *******/
	/*****************************/
	if ($("#ilsexposent").length) {
		$('#ilsexposent').innerfade({ speed: 'slow', timeout: 3000, type: 'sequence'});
	}

});