$(document).ready(function(){
	stretchFond();
	activerLiensExternes();
	//chargerRandomPic();
	//activerRandomPic();
});

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

/**********************************************************************
Charge une nouvelle photo random
**********************************************************************/
function activerRandomPic(){
	$("#fond").click(function(){
		chargerRandomPic();
	});
}

function chargerRandomPic(){
	$("#fond").load("/includes/load-pic.php", function() {
		stretchFond();
		$("#infos-photo").html($("#fond img").attr("alt"));
	});
}

/**********************************************************************
Ouvre les liens externes dans une nouvelle fenêtre
**********************************************************************/
function activerLiensExternes(){
	$("a[href*='http']").attr("target", "_blank");
}

/**********************************************************************
Ajuste les dimensions de l'image de fond
**********************************************************************/
function stretchFond(){
	var stageW = $(window).width();
	var stageH = $(window).height();
	
	if(stageW/stageH > 1024/768){
		$("#fond").css("width", stageW);
		$("#fond").css("height", (stageW*768)/1024);
	} else {
		$("#fond").css("width", (stageH*1024)/768);
		$("#fond").css("height", stageH);
	}
	
	$("#fond img").css("width", "100%");
	$("#fond img").css("height", "100%");
	$("#fond").css("margin-left", -($("#fond img").width()/2));
	$("#fond").css("margin-top", -($("#fond img").height()/2));
}
