// JavaScript Document


var inprog = 0;

$(document).ready(function () {
						
	/* MENU */
	$("ul.sf-menu").superfish({ 
	pathClass:  'current',
	delay: 800
	}); 
	/* LANGAGES */
  	$('.top-links h2').hover(function () {
		if(inprog == 0) {
        $('.top-links ul').slideDown('medium');
		inprog = 1;
		}
	});
	
	/* BOITES DIAPORAMA POP-IN AGENCES / CASES STUDIES */
	$("a[rel=gallery_box_view]").fancybox({
	'titleShow'		: true,
	'enableEscapeButton' : true,
	'autoScale' : true,
	'titlePosition'  : 'inside',
	'transitionIn'	: 'elastic',
	'transitionOut'	: 'none',
	'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
		    return '<span id="fancybox-title-over"><strong>'+ title +'</strong><br />Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + '</span>';
		}

	});
	
	/* BOITES DIAPORAMA POP-IN CONTACT GMAP */
	$("a.open_map").fancybox({
	'width': '75%',
	'height': '75%',
	'transitionIn': 'none',
	'transitionOut'		: 'none'
	});
});

$(function(){
		   
	$('.scroll-pane').jScrollPane( {
	showArrows:true
	});
	$("div.mini-carousel-news").carousel( { 
	autoSlide: false, 
	dispItems: 1,
	animSpeed: "slow" }  );
	
	$("div.mini-carousel-clients").carousel( { 
	autoSlide: false, 
	dispItems: 2,
	loop: true,
	animSpeed: "slow" }  );
	
	/* HOME CLIENT LOGO */
	$("div.clients-logo").carousel( { 
	autoSlide: false, 
	dispItems: 1,
	loop: true,
	animSpeed: "slow" }  );
	
	// Caroussel agence
	$("div.mini-diaporama div.item-list").carousel( { 
	autoSlide: false, 
	dispItems: 1,
	loop: true,
	animSpeed: "slow" }  );


	$("div.carouselvisio").carousel( { 
	autoSlide: false, 
	dispItems: 3,
	loop: true,
	animSpeed: "slow" }  );
	
	/* CONTACT ZONE */
	$(".int").expandAll({trigger: "div.expand", ref: "div.box-contact", showMethod: "slideDown", hideMethod: "slideUp", speed: 200});
	$("div.expand").toggler({method: "slideFadeToggle"});    
	
	/* HOME SCROLL BOITE ITG */
	$('.itg-group-content .scroll-pane').jScrollPane( {
	showArrows:true
	});
});

