// JQuery Document

function resizeImagesContact(){
	
		
		
		if($(window).width() < ($(window).height()-107)){
			$("#imageHolder > img").height($(window).height()-107);
			$("#imageHolder > img").width(($(window).height()-107) * 1920 / 1200);
		}else{
			$("#imageHolder > img").width($(window).width());
			$("#imageHolder > img").height($(window).width() * 1200 / 1920);
			tempw = $(window).width();
			temph = $(window).width() * 1200 / 1920;
			if(temph < ($(window).height()-107)){
				$("#imageHolder > img").height($(window).height()-107);
				$("#imageHolder > img").width(($(window).height()-107) * 1920 / 1200);	
			}
		}
		if($("#imageHolder > img").height() != null && $("#imageHolder > img").height() != 0){
			$("imageHolder > img").css("margin-top", (($(window).height()-107)-$("#imageHolder > img").height())/2+"px");
		}
		//$("#projet"+i+"> img").css("z-index", 20-i);
		
		$("#imageHolder").width($(window).width());
		$("#imageHolder").height($(window).height()-107);
		$("#corp").width($(window).width());
		$("#corp").height($(window).height()-107);
		
 	
	$("#infoContact").css("top", ($(window).height()/2)-$("#infoContact").height()).css("display", "block").width($(window).width());
	$("#contact").css("margin-left", ($(window).width()/5)*3 )
	
	
}

$(document).ready(function() {
	
	$("#imageHolder").append("<img src=\"images/bg-contact.jpg\"/>");
			
	resizeImagesContact();
	$("#fermerpied").click(function(){
		$("#contenupied").slideToggle("slow");
   	});
	
	$("#sitemap").click(function(){
		$("#contenupied").slideToggle("slow");
   	});
});

$(window).resize(function(){
	resizeImagesContact();
	
});
