// AFFICHER-CACHER DIVS
var tabProv = new Array();
tabProv[0] = "flayosc";
tabProv[1] = "quefaire";
tabProv[2] = "galerie";
tabProv[3] = "itineraire";
tabProv[4] = "tarifs";

function showItem(itemUrl, tab) {
	itemToShow = itemUrl.substr(itemUrl.indexOf("#") + 1);
	for (i=0; i<tab.length; i++) {
		var itemId = document.getElementById(tab[i]);
		itemId.style.display = "none";
	}
	document.getElementById(itemToShow).style.display = "block";
}


var idPhoto = "img";
/* Clic sur les vignettes */
function swapImageOnClick(linkSrc) {
	document.getElementById(idPhoto).src = linkSrc; // Change la source de la photo
}

// Popup page
function popup(src, wWidth, wHeight) {
	winLeft=(document.body.offsetWidth/2) - (wWidth/2);
	var popup = window.open(src,"Ma R&eacute;sidence - Tellin",config='top=120,left=' + winLeft + ',width=' + wWidth + ',height=' + wHeight + ',resizable=yes,scrollbars=yes');
	popup.window.focus();
}
