// JavaScript Document

function Replace_img(a,b) {
	if(a != stopit){
	document.getElementById(a).src='images/'+b+'.jpg';
	}
	
	
	
}
function Replace_block_img (a,b) {
	
	document.getElementById('accueil_img').src='images/bt_accueil_off.jpg';
	document.getElementById('presentation_img').src='images/bt_presentation_off.jpg';
	document.getElementById('services_img').src='images/bt_services_off.jpg';
	document.getElementById('contact_img').src='images/bt_contact_off.jpg';
	
	if(a != 'init' || b != 'init'){
	document.getElementById(a).src='images/'+b+'.jpg';
	stopit = a;}
	
	
}

function Appear(a){
	
for (i=1; i<6; i++) {
	document.getElementById("p"+i).style.display = 'none';
	
	document.getElementById("p"+i).style.zIndex = 1;
	
}
$('#p'+a).fadeIn(300);
//$("#p"+a).animate({
   //visibility: 'visible'
 //}, 800);
document.getElementById("p"+a).style.zIndex = 10;
}

function ChangeCursor(a) {
	for (i=1; i<7; i++) {
	document.getElementById("ssp"+i).style.backgroundImage = 'url(images/fleche_off.jpg)';
	
	
}
document.getElementById("ssp"+a).style.backgroundImage = 'url(images/fleche_on.jpg)';
}

