$(document).ready(function(){
	        $('select').find('option:first').attr('selected', 'selected').parent('select');
/* 	        $('.en').hide(); */
	        $('#content div').not('iframe div').not('li div').hide();
	        $('#content div:first').show();
	        
	        $('#slideshow').css('visibility', 'visible');
	        $('#menu a').click(function() {
	        	if(!$(this).hasClass('active')) {
		        	$('#menu a').removeClass('active');
		        	$(this).addClass('active');
		        	var contenu = $(this).attr("href");
		        	$('#content div').hide();
	        	$(''+contenu+'').show();
	        	}
	        });
	        
	       	
	        $("#slideshow").wslide({
	                width: 980,
	                height: 367,
	                fade: true
	        });
	       
	        $("#realisations ul li a").fancybox({
	        	overlayOpacity: 0.7,
	        	easingIn: 'easeInOutQuart',
	        	easingOut: 'easeInOutQuart',
	        	easingChange: 'easeInOutQuart',
	        	overlayColor: '#000',
	        	padding: 0,
	        	showCloseButton: false
	        }); 
	        $("#realisations ul li").hover(function(){
	        	$(this).children('span').css('display', 'inline');
	        	$(this).children('a').children('img').css('border', '1px solid #ffffff');
	        },function(){
	        	$(this).children('span').css('display', 'none');
	        	$(this).children('a').children('img').css('border', '1px solid #ffd920');
	        });
	        $('#services div:first').css('border-left','none');
	        $('#services div:last').css('border-right','none');
	
	var newSelection = "";

	$("#clients").change(function(){
		if($(this).attr("value") != 'null'){
		    $("#realisations ul").fadeTo(200, 0);
	
			newSelection = $(this).attr("value");
	
			$("#realisations ul li").not("."+newSelection).slideUp('fast');
			$("."+newSelection).slideDown('fast');
	
		    $("#realisations ul").fadeTo(600, 1);
		    $('#types').find('option:first').attr('selected', 'selected').parent('select');
	    }
	});
	$("#types").change(function(){
		if($(this).attr("value") != 'null'){
		    $("#realisations ul").fadeTo(200, 0);
	
			newSelection = $(this).attr("value");
	
			$("#realisations ul li").not("."+newSelection).slideUp('fast');
			$("."+newSelection).slideDown('fast');
	
		    $("#realisations ul").fadeTo(600, 1);
		    $('#clients').find('option:first').attr('selected', 'selected').parent('select');
		}
	});
	$('#listeComplete').click(function(){
		$("#realisations ul li").slideDown('fast');
		$('select').find('option:first').attr('selected', 'selected').parent('select');
	});
	setTimeout(function() {
	 $("#menu ul").lavaLamp({
	                fx: "easeInOutQuart",
	                speed: 400,
	                click: function(event, menuItem) {
	                    return false;
	                }
	        });}, 1000);

});
