/*Popup du contactez-nous(petite-terre)*/
function show_popup(id){
	var position = Position.positionedOffset(document.getElementById('footer_left'));
	document.getElementById(id).style.display = 'block';
	document.getElementById(id).style.top = (position[1] - 20)+ "px";
	document.getElementById(id).style.left = (position[0] + 55)+ "px";
	//document.getElementById('droits_mec').style.display = 'none';
}
function hide_popup(id){
	document.getElementById(id).style.display = 'none';
	//document.getElementById('droits_mec').style.display = 'block';
}


/*Page contact*/

var value_default = 0;

function slider_cnt(side, limit){
	//alert(side);
	//alert(limit);
	//alert(value_default);
	
	var jump = 207;
	var tableau  = $('table_scroller');
	//alert(tableau.style.left);
	if(side == 'left'){
		if(value_default < limit){
			value_default = value_default + jump;
			tableau.style.left = value_default+"px";
			
		}
	} else{
		if(value_default > limit){
			value_default = value_default - jump;
			tableau.style.left = value_default+"px";
		}
	}

}


var id_scroll_left = 0;
var id_scroll_right = 3;

function contact_scroll(side, jump, limit){
	//alert(side);
	var fleche_r = $('the_right_scroll');
	var fleche_l = $('the_left_scroll');
	var tmp_scroll_left;
	var tmp_scroll_right;
	
	if(side == 'left'){
		if(id_scroll_left > limit){
			id_scroll_left = id_scroll_left - jump;
			id_scroll_right = id_scroll_right - jump;
		}
	} else{
		if(id_scroll_right < limit){
			id_scroll_left = id_scroll_left + jump;
			id_scroll_right = id_scroll_right + jump;
		}
	}
	
	fleche_l.href = "#scroll_"+id_scroll_left;
	fleche_r.href = "#scroll_"+id_scroll_right;
}


/*Page produits*/
var pro_id_scroll_left = 0;
var pro_id_scroll_right = 5;

function produits_scroll(side, jump, limit){
	//alert(side);
	var fleche_r = $('the_right_scroll');
	var fleche_l = $('the_left_scroll');
	if(side == 'left'){
		if(pro_id_scroll_left > limit){
			pro_id_scroll_left = pro_id_scroll_left - jump;
			pro_id_scroll_right = pro_id_scroll_right - jump;
		}
	} else{
		if(pro_id_scroll_right < limit){
			pro_id_scroll_left = pro_id_scroll_left + jump;
			pro_id_scroll_right = pro_id_scroll_right + jump;
		}
	}
	
	
	fleche_l.href = "#scroll_"+pro_id_scroll_left;
	fleche_r.href = "#scroll_"+pro_id_scroll_right;
	
	//alert(fleche_l);
	//alert(fleche_r);
	
}

var value_default = 0;

function slider(side, limit){
	//alert(side);
	//alert(limit);
	//alert(value_default);
	
	var jump = 120;
	var tableau  = $('table_scroller');
	//alert(tableau.style.left);
	if(side == 'left'){
		if(value_default < limit){
			value_default = value_default + jump;
			tableau.style.left = value_default+"px";
			
		}
	} else{
		if(value_default > limit){
			value_default = value_default - jump;
			tableau.style.left = value_default+"px";
		}
	}

}



function update_contact(nom, poste, courriel, cell){
	var cnt_nom = $('cnt_nom');
	var cnt_poste = $('cnt_poste');
	var cnt_courriel = $('cnt_courriel');
	var cnt_cell = $('cnt_cell');

	//alert(cnt_nom);
	//alert(cnt_poste.innerHTML);
	//alert(cnt_courriel.innerHTML);
	//alert(cnt_cell.innerHTML);
	//alert(nom);
	//alert(poste);
	cnt_nom.innerHTML = nom;
	cnt_poste.innerHTML = poste;
	cnt_courriel.innerHTML = courriel;
	cnt_cell.innerHTML = cell;
}


