$(document).ready(function() {
	$('.constructeur, .slideGauche p, .slideDroite p').cycle({fx: 'fade', timeout: 3000, delay: 1500});


	// var mainHeight = $('#main').height();
	// 	var rightHeight = $('#rightbar').height();
	// 	
	// 	if ($('#rightbar').height()>$('#main').height()) {
	// 		$('#main').height(rightHeight);
	// 		
	// 	} else if ($('#main').height()>$('#rightbar').height()) {
	// 		$('#rightbar').height(mainHeight);
	// 	};



	// $('#rightbar').height($('#conteneur').height());
	
	$('.nosReferences, .savoirFaire, .zoneIntervention').css({cursor:'pointer'}).click( function() { 
		window.location.href = $(this).find('a').attr('href');
		return false;
	} );
	$('.constructeur h1').each(function(){
		var url = $(this).find('a').attr('href');
		$(this).append(" <a class='suite' href='"+url+"'>> En savoir +</a>");
	});
	
	
	$('#directory .maison').each(function(){
		$(this).find('.gps').hide();
		$(this).find('.photos img').hide();
		var urlLink = $(this).find('a').attr('href');
		var urlImg = $(this).find('.photos img:eq(0)').attr('src').replace('thumbnails/','');
		$(this).prepend('<a href="'+urlLink+'" style="display:block;overflow:hidden;height:170px"><img src='+urlImg+' width="265" /></a>');
		
	});
	
	// $('#directory.detail').map(function(){
	// 		// $(this).find('.photos img').hide();
	// 		var urlImg = $(this).find('.photos img:eq(0)').attr('src').replace('thumbnails/','');
	// 		$(this).find('h1').after('<img src='+urlImg+' width="540" />');
	// 	});	
	
	if($('#directory.detail').length){
		if($('#directory.detail .photos .list_field_35 img').size()==1) $('.photos').hide();
		var urlImg = $(this).find('.photos img:eq(0)').attr('src').replace('thumbnails/','');
		$('#directory.detail').find('h1').after("<div id='previewPhoto'></div>");
		$('#previewPhoto').prepend('<img src='+urlImg+' width="540" />');

		$('.div_field_35').css({cursor:'pointer'}).click(function(){
		   var urlImg = $(this).find('img').attr('src');
		   urlImg = urlImg.replace('thumbnails/','');
		   $('#previewPhoto').find('img').attr('src',urlImg);
		   return false;
		});	
	}
	
	$("#directory .maison:nth-child(2n)").addClass('maisonDroite');

	
});
