﻿function showFrame(id,idEntry) {
	document.getElementById("divFrameGssPresentation").style.display = "none";
	document.getElementById("divFrameGssSchedules").style.display = "none";
	document.getElementById("divFrameGssMap").style.display = "none";
	document.getElementById(id).style.display = "block";
	if(id=="divFrameGssMap") {
		var frameGMap = document.getElementById("frameGMap");
		if(frameGMap.innerHTML=="") frameGMap.innerHTML = "<iframe width=\"416\" height=\"350\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.fr/maps?f=q&amp;hl=fr&amp;geocode=&amp;q=12+rue+de+l'apport+22100+Dinan+FRANCE&amp;sll=47.15984,2.988281&amp;sspn=13.09218,34.541016&amp;ie=UTF8&amp;ll=48.461084,-2.038736&amp;spn=0.006233,0.016866&amp;z=14&amp;output=embed&amp;s=AARTsJom0AQkmJE3bVDP7q3UG4y1j3gEZg\"></iframe>";	
	}
	subMenu.setCursor(idEntry);
}
var subMenu = new gss.Menu("subMenu", "sm", "divSubEntries",90);
		subMenu.addEntry("Qui sommes-nous ?","javascript:showFrame('divFrameGssPresentation','sm1');");
		subMenu.addEntry("Où sommes-nous ?","javascript:showFrame('divFrameGssMap','sm2');");
		subMenu.addEntry("Quand venir nous voir ?","javascript:showFrame('divFrameGssSchedules','sm3');");
		subMenu.cursorHalfWidth = 7;

window.onload = function() {
	showFrame("divFrameGssPresentation","sm1");
}					