// Javascript for Sahyadri Nisarga Mitra

document.write('<script language="JavaScript" src="js/JSCookMenu.js"></script>');
document.write('<link rel="stylesheet" href="js/ThemeOffice/theme.css" type="text/css">');
document.write('<script language="JavaScript" src="js/ThemeOffice/theme.js"></script>');

// Sample - [' ', 'menu item', 'url', 'target', 'description']
var myMenu =
[
	[' ', 'Home', 'default.html', '', 'Home'],   // a menu item (_cmSplit for a |)
	[' ', 'Projects', '', '', 'Our projects',  // a folder item
		[' ', 'Whitebellied sea eagle', 'sea_eagle.html', '', 'Whitebellied sea eagle'],  // a menu item
		[' ', 'Indian swiftlet', 'indian_swiftlet.html', '', 'Indian swiftlet'],  // a menu item
		[' ', 'Marine turtle', 'turtle.html', '', 'Marine turtle'],  // a menu item
		[' ', 'Vultures', 'vulture.html', '', 'Vultures'],   // a menu item
		[' ', 'Birds of Konkan', 'konkan_birds.html', '', 'Birds of Konkan'],   // a menu item
		[' ', 'Other activities', 'other.html', '', 'Other activities'],   // a menu item
	],
	[' ', 'Photos', 'photos.html', '', 'Photo gallery',  // a menu item
		[' ', 'Birds', 'photos_birds.html', '', 'Bird photos'],  // a menu item
		[' ', 'Turtle festival 2009', 'turtle-festival-2009.html', '', 'Turtle festival 2009'],  // a menu item
		[' ', 'Turtle festival 2008', 'photos_festival_2008.html', '', 'Turtle festival 2008'],  // a menu item
		[' ', 'Turtle festival 2007', 'photos_festival.html', '', 'Turtle festival 2007'],  // a menu item
	],
	[' ', 'SNM', '', '', 'description',  // a menu item
		[' ', 'About us', 'about_us.html', '', 'About SNM'],  // a menu item
		[' ', 'Contact us', 'contact_us.html', '', 'Contact us'],  // a menu item
		[' ', 'Support us', 'support_us.html', '', 'Support us'],  // a menu item
		[' ', 'Sitemap', 'sitemap.html', '', 'Sitemap'],  // a menu item
//		[' ', 'Newsletter', 'url', '', 'description'],   // a menu item
	]
];

function showHeaderAndTopNavBar() {
	document.write('<div id="header">');
	document.write('<img src="images/sahyadri.gif" style="float: left;" alt="SNM title" title="Sahyadri Nisarga Mitra">');
	document.write('<img src="images/snm_mission.gif" style="float: right;" alt="SNM work" title="Protecting nature...">');
	document.write('</div>');
//	document.write('<br>');
	document.write('<div id="topnavbar">');
	document.write('<div id="myMenuID" style="border: 0px solid red;"></div>');
	cmDraw ('myMenuID', myMenu, 'hbr', cmThemeOffice, 'ThemeOffice');
	document.write('</div>');
}

function showFooter() {
	document.write('<div id="footer">');
	document.write('Sahyadri Nisarga Mitra :: ');
	document.write('Address: Near Laxminarayan temple, Chiplun, District - Ratnagiri, ');
	document.write('Maharashtra, India 415 605 :: ');
	document.write('Mobile: +91 94238 31700');
	document.write('</div>');
}

function showBotNavBar() {
	document.write('<div id="botnavbar">');
	document.write('<a href="sea_eagle.html">Whitebellied sea eagle</a> | ');
	document.write('<a href="indian_swiftlet.html">Indian swiftlet</a> | ');
	document.write('<a href="turtle.html">Marine turtle</a> | ');
	document.write('<a href="vulture.html">Vultures</a> | ');
	document.write('<a href="konkan_birds.html">Birds of Konkan</a> | ');
	document.write('<a href="other.html">Other activities</a>');
	document.write('<br>');
	document.write('<a href="default.html">Home</a> | ');
	document.write('<a href="photos.html">Photo gallery</a> | ');
	//document.write('<a href="">Newsletter</a> | ');
	document.write('<a href="about_us.html">About us</a> | ');
	document.write('<a href="contact_us.html">Contact us</a> | ');
	document.write('<a href="support_us.html">Support us</a> | ');
	document.write('<a href="sitemap.html">Sitemap</a>');
	document.write('</div>');
}