$(document).ready(
	function()
	{

		carrousel('carrousel-realisations',466,1,1000);
		carrousel('carrousel-actus',532,1,3000);


		$('.wpcf7-not-valid-tip-no-ajax').each(
			function()
			{
					if($(this).prev().hasClass('text'))
						$(this).prev().css('border','1px solid #C30000');
					else
						$(this).prev().prev().css('border','1px solid #C30000');
			}
		);




 		 $('.imgvignette,.imgzoom').click(
      		function ()
      		{
        		 var nomimage = $(this).attr("src");
				 nomimage = nomimage.replace('.','_big.');
				 $('#zoom').html("<img src=\""+nomimage+"\" />");
				 $('#iframe').css('opacity',0.8);
				 $('#iframe').fadeIn('fast');
				 $('#zoom').show();

      		}
    	);

		$('#zoom').click(
			function()
			{
				$('#iframe').hide();
				$('#iframe').html('');
			 	$('#zoom').hide();
			}
		);
		$('#iframe').click(
			function()
			{
				$('#iframe').hide();
				$('#iframe').html('');
				$('#zoom').hide();
			}
		);

	}

);


function showTechno()
{

	$.get('/wp-content/themes/desjoyaux/technologie.php', function(data){
		$('#iframe').html('<div id="zoom">'+data+'</div>')
		$('#iframe').fadeIn('fast');
		$('#zoom').show();
	});


	return false;
}

function showEquipement()
{

	$.get('/wp-content/themes/desjoyaux/equipement.php', function(data){
		$('#iframe').html('<div id="zoom">'+data+'</div>')
		$('#iframe').fadeIn('fast');
		$('#zoom').show();
	});


	return false;
}