// ------------------------------------------------------------------------------------------------//
jQuery(document).ready(function() {
	
	$('.photoMan').mouseover(function(){
		$(this).removeClass('photoBorder').addClass('photoOver');
	});
	$('.photoMan').mouseout(function(){
		$(this).removeClass('photoOver').addClass('photoBorder');
	});

	$(".modelPict").fancybox();
	var locationObj = window.location;


});

function change_pict(id_photo,id_man) {
	document.getElementById('main_picture').src = '../photos/'+id_man+'/grande/'+id_photo;	
}

function fenetreCent(url,nom,largeur,hauteur,options) {
	var haut=(screen.height-hauteur)/2;
	var Gauche=(screen.width-largeur)/2;
	hauteur = Number(hauteur+50);
	fencent=window.open(url,nom,"top="+haut+",left="+Gauche+",width="+largeur+",height="+hauteur+","+options);
	window.fencent.resizeTo(largeur,hauteur);
	fencent.window.focus();
}

function ShowHideLayerModels(LayerName) {

	var targetElement;
	//Netscape 4
	if(document.layers) {
    	targetElementMode = document.layers('mode');
		targetElementDetails = document.layers('details');
		targetElementPub = document.layers('pub');
		targetElementEthnies = document.layers('ethnies');
	}
	//IE6
	if(document.all) {
		targetElementMode = document.all('mode');
		targetElementDetails = document.all('details');
		targetElementPub = document.all('pub');
		targetElementEthnies = document.all('ethnies');
	}
	//Netscape 6
	if(!document.all && document.getElementById) {
		targetElementMode = document.getElementById('mode');
		targetElementDetails = document.getElementById('details');
		targetElementPub = document.getElementById('pub');
		targetElementEthnies = document.getElementById('ethnies');
	}

	if(LayerName == 'mode') {
		targetElementMode.style.display = "" ;
		targetElementDetails.style.display = "none" ;
		targetElementPub.style.display = "none" ;
		targetElementEthnies.style.display = "none" ;
	}
	if(LayerName == 'details') {
		targetElementMode.style.display = "none" ;
		targetElementDetails.style.display = "" ;
		targetElementPub.style.display = "none" ;
		targetElementEthnies.style.display = "none" ;
	}
	if(LayerName == 'pub') {
		targetElementMode.style.display = "none" ;
		targetElementDetails.style.display = "none" ;
		targetElementPub.style.display = "" ;
		targetElementEthnies.style.display = "none" ;
	}
	if(LayerName == 'ethnies') {
		targetElementMode.style.display = "none" ;
		targetElementDetails.style.display = "none" ;
		targetElementPub.style.display = "none" ;
		targetElementEthnies.style.display = "" ;
	}
}

function checkBox(donnee) {
var chk = 'chk_'+String(donnee);

	if(document.getElementById(donnee).value == 'N') {
		document.getElementById(chk).src = './picts/true.png';
		document.getElementById(donnee).value = 'Y';
	}
	else {
		document.getElementById(chk).src = './picts/false.png';
		document.getElementById(donnee).value = 'N';
	}
}


