// JavaScript Document


	var menuArrayGalleries = [
		['Gallery 1', 'photos.asp?display=1', null],
		['Gallery 2', 'photos.asp?display=2', null],
		['Gallery 3', 'photos.asp?display=3', null]
	];

	var menuArrayDownload = [
		['FORMfields v1.1', 'http://www.formfields.com/index.php', null],
		['FORMfields v1.0', 'http://www.formfields.com/index.php', 'menuArrayV10']
	];

	var menuArrayFORMfields = [
		['Home', 'http://www.formfields.com/index.php', null],
		['Download', 'http://www.formfields.com/index.php', 'menuArrayDownload'],
		['Contact Us', 'http://www.formfields.com/index.php', null]
	];

	var menuArrayAboutscott = [
		['Biography', '/about/index.php', null],
		['From the Road', '/about/journal.php', null],
		['Events', '/news/calendar.php', null],
		['Photos', '/about/photos.php', null]
	]; 

	var menuArrayIssues = [
		['Overview', '/issues/index.php', null],
		['Health Care', '/issues/healthcare.php', null],
		['Agriculture', '/issues/agriculture.php', null],
		['Education', '/issues/education.php', null],
		['National Security', '/issues/nationalsecurity.php', null],
		['Opinions / Blog', '/issues/blog/index.php', null]
	];
	
	var menuArrayNewsroom = [
	 	['News Stories', '/news/stories.php', null],
 		['Press Releases', '/news/pr.php', null],
 		['Press Photos', '/news/photos.php', null],
 		['Short Biography', '/news/bio.php', null],
 		['Calendar', '/news/calendar.php', null]
	];
	
	var menuArrayGive = [
		['Contribute', '/donate/index.php', null],
		['Donate Online', '/donate/donate.php', null],
		['Donate by Mail', '/donate/bymail.php', null],
		['Volunteer', '/donate/volunteer.php', null]
	];

	TOP_MENU_LEFT_OFFSET = 2; 



function displayToggle(id) {
            
	var el = document.getElementById(id).style;
    
    if(el.display == "none") {
		el.display = "block";
 	}
 	else if(el.display == "block") {
		el.display = "none";
    }
            
}
            
  function noSpam(user,domain) {
	locationstring = "mailto:" + user + "@" + domain;
	window.location = locationstring;
	}