

	if (TransMenu.isSupported()) {


		var ms = new TransMenuSet(TransMenu.direction.down, 1, 0, TransMenu.reference.bottomLeft);


		var menu1 = ms.addMenu(document.getElementById("nav"));
		menu1.addItem("Go to the Put In", "default.html"); 
		menu1.addItem("About Rocky Canoe Club", "aboutrcc.html"); 
		menu1.addItem("Learn to Paddle", "courses.html");
		menu1.addItem("Our Local Runs", "localruns.html"); 
		menu1.addItem("Photos & Videos", "photosvideos.html");
		menu1.addItem("Our Paddler's Forum", "http://rockycanoeclub.betaboard.ca/"); 
		menu1.addItem("Our Paddler's Blog", "http://rockycanoeclub.blogspot.com"); 
		menu1.addItem("Go to the Take Out", "contact.html");
	
	
		TransMenu.renderAll();
	}

