$(document).ready(function() {
	$("#temoignagescontent").bxSlider({
		auto: true,
		infiniteLoop: true,
		pager: true,
		pause: 15000,
		controls: false
	});

	$("#menuservices li:first").addClass("actif");
	$("#menuservices li:first").css("height","55px");
	
	$("#menuservices li").mouseover(function(){
		$("#menuservices li.actif").stop().animate(
            {height: '20px'}
		)
        $(this).stop().animate(
            {height: '55px'}
		)
		
    });
	
    $("#menuservices li").mouseout(function(){
		$("#menuservices li.actif").stop().animate(
            {height: '55px'}
		)
        $(this).stop().animate(
            {height: '20px'}
		)
    });

	$(".tab_content").hide(); 
	$(".tabs li:first").addClass("active").show();
	$(".tab_content:first").show();
	$(".tabs li").click(function(){
		$(".tabs li").removeClass("active"); 
		$(this).addClass("active"); 
		$(".tab_content").hide();
		var activeTab = $(this).find("a").attr("href");
		$(activeTab).fadeIn();
		return false;
	});
	
	$("a.popin-open-01").popin({
		width:900,
		height:650
	});
	
});
