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

  $(".popup").click(function(){ 
    window.open($(this).attr("href")); 
    return false; 
	}); 
  
  $("body").addClass($.browser+$.browser.version.substr(0,1));
	
	$.each($.browser, function(i, val) {
 	 if(i=="msie" && $.browser.version.substr(0,3)=="6.0"){
	 $.getScript("http://wwwdata.appli-box.com/scripts/minmax.js");}
	});
	
// Carte de France	
	/*$("#agences li:first").addClass("active");
	$("#agences div:first").fadeIn("slow");*/
	$("#agences li:eq(1)").addClass("active");
	$("#agences div:eq(1)").fadeIn("slow");

	$(".point").click(function(){
	  $("#agences div").hide();
	  $(this).next("div").fadeIn("slow");
	  $(this).parent("li").toggleClass("active");
	  $(this).parent("li").siblings("li").removeClass("active");
	});
	
});

