
$(document).ready(function($){

	// Ouvrir dans une nouvelle fenêtre
  $(".popup").click(function(){ 
    window.open($(this).attr("href")); 
    return false; 
	});
  
	$('#textContainer').fadeIn(1500);
	$('#logoContainer').fadeIn(1500);	
	
	// Afficher - Cacher le texte
	$("#btTextClose").click(function(){
	  $(".textToggle").slideToggle("slow");
	  $(this).toggleClass("active");
	});
	
	// Animation fond
	$('.animation').cycle({ 
    fx:     'fade', 
    speed:  'slow', 
    timeout: 0, 
    pager:  '#nav', 
    pagerAnchorBuilder: function(idx, slide) { 
        return '#nav li:eq(' + idx + ') a'; 
    } });	
	
	// Tabs avec les articles
	$("#tabContainer").tabs({ 
		fx: { opacity: 'toggle' }
		 })
 	$("a#btBlog").hover(function() {
	  $("#bulleBlog").animate({opacity: "show", bottom: "40"}, "slow");
	}, function() {
	  $("#bulleBlog").animate({opacity: "hide", bottom: "30"}, "fast");
	});
	
});

