// 
// File containing variable items for placement in the head of the page
// NOTE that location addresses are constructed as absolute addresses using a variable 
// This enables the navigation stack to be used in any folder relative to the root and 
// in test on the home PC as well as on the operational server.
//
// NOTE! The call to this file must come after any coded email entries in the page!!!
//				See encryption code below.
//
<!--
// First comes the Netscape resize fix from Dreamweaver (must come first)
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//
// Next disable right mouse click (stops copying of pictures)
var temp="";
function clickStop1() {
	if (document.all) {
		(temp);return false; } }
function clickStop2(a) {
	if (document.layers||(document.getElementById&&!document.all)) {
		if (a.which==2||a.which==3) {
			(temp);return false; } 	} }
if (document.layers){document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickStop2;}
else{document.onmouseup=clickStop2;document.oncontextmenu=clickStop1;}
document.oncontextmenu=new Function("return false")
//
window.defaultStatus = "  Welcome to the Happy Valley!";
/*
	 Window name is set when each page is loaded in order to set the name to 'bollington'.
	 This is necessary so that further pages are loaded into the same window when selected
	 from the pub map (Firefox, Chrome and Opera browsers only), or the business windows.
*/
window.name = "bollington";
//
// Now determine whether we are running on the PC, a laptop or on the live server
// This code is repeated in pubmap.js and any updates here should be reflected there
//
var db_ind = "&db=local"; // indicator for business database
var prefix = "";  // for the live server add nothing (default)
var local  = "file:///E:/WWW/Bollington";  // the PC running with the data in E:
var localhost = " "; // Local host DB (No prefix but the space enables test further down!)
var laptop = "/Documents%20and%20Settings/All%20Users/Documents/WWW/Bollington";  // the old laptop
var laptop1545 = "/Users/WW1SAM/Web%20sites/Bollington";  // the laptop Inspiron 1545
//
var source = parent.location.href.substring(0,4);
// window.alert("1a. Source: " + source);
if (source == "file") {prefix = local;
// window.alert("1b. Source: " + source);
			};
var source = parent.location.href.substring(39,43);
// window.alert("2a. Source: " + source);
if (source == "Users") {prefix = laptop; 
// window.alert("2b. Source: " + source);
			};
var source = parent.location.href.substring(11,18);
// window.alert("3a. Source: " + source);
if (source == "Users/W") {prefix = laptop1545; 
// window.alert("3b. Source: " + source);
			};
var source = parent.location.href.substring(11,16);
// window.alert("4a. Source: " + source);
if (source == "lhost") {prefix = localhost; 
			};
//if (source == "lhost//") {prefix = localhost; 
// window.alert("4b. Source: " + source);
//			};
//if (source == "localho") {prefix = localhost; 
// window.alert("4c. Source: " + source);
//			};
if (prefix == "") {db_ind = ""};
// window.alert("5a. db_ind: " + db_ind);
//
// Find parameters in source
//
var source = parent.location.href;
var params = "";
var qPosition = 0;
for (var i=0; i<=source.length; i++) {
	if (source.charAt(i) == "?") {var qPosition=i; }; 
	};
if (qPosition != 0) {
	qPosition = qPosition + 3; 
	params = source.charAt(qPosition); 
	};
if (params == "s") {params = "services"; };
if (params == "o") {params = "organisations"; };
//window.alert("params: " + params + ", qPosition: " + qPosition);
//
// Now the email crypt fix
/*
   Default email addresses. On any page having more than webmaster (and town hall) there 
  	will be a full set of coded addreses. Any page having only webmaster (and town hall) 
  	will rely on this default set of addresses.
  
   In navigation1.js the data setting is conditional. The special needs are provided for 
  	in the pages themselves prior to the call to navigation1.js (which is template driven). 
  	In these cases the data from navigation1.js will be ignored and not loaded. The test is 
  	to see if adrdata already exists
*/
if(!adrdata) {
	var adrdata = new Array(); // for email addresses
	adrdata.push("43139 43133 12121 33416 35642 15951 22492 3982 10373 31754 31710 16352 12121 33416 5654 22492 31710 28580 19585 8396 33416 26576 26576 38673 3562 41534 33416 15951 15951 31710 38673 19599 3982 28580 18148 19599 12740 30944 26017 5654 12740 16352 10644 31710 32331 22492 13061 10584 33416 26576 26576 38673 38080 21398 33416 15951 15951 31710 38673"); // [0] web master subject hv
	adrdata.push("43139 43133 12121 33416 35642 15951 22492 3982 10373 16352 3982 15951 15951 35642 39249 18148 22492 3982 39249 19599 22492 32331 19585 16352 22492 32331 3982 39249 39249 31710 32331 22492 19599 32331 3982 12121");  // [1] bollington.tc 
} // Must follow all adrdata entries
//
// This script is (c) copyright 2008 by Dan Appleman under the
// GNU General Public License (http://www.gnu.org/licenses/gpl.html)
// This script is modified from an original script by Jim Tucek
// For more information, visit www.danappleman.com 
// Leave the above comments alone!
//
var decryption_cache = new Array();
function decrypt_string(crypted_string,n,decryption_key,just_email_address) {
	var cache_index = "'"+crypted_string+","+just_email_address+"'";
	if(decryption_cache[cache_index])	
		return decryption_cache[cache_index];	
	if(adrdata[crypted_string])	
		var crypted_string = adrdata[crypted_string];	
	if(!crypted_string.length)	
		return "Error, not a valid index.";
	if(n == 0 || decryption_key == 0) {	
		var numbers = crypted_string.split(' ');	
		n = numbers[0];	decryption_key = numbers[1];	
		numbers[0] = ""; numbers[1] = "";	
		crypted_string = numbers.join(" ").substr(2);
		}
	var decrypted_string = '';
	var crypted_characters = crypted_string.split(' ');
	for(var i in crypted_characters) {
		var current_character = crypted_characters[i];
		var decrypted_character = exponentialModulo(current_character,n,decryption_key);
		if(just_email_address && i < 7) 
			continue;
		if(just_email_address && decrypted_character == 63) 
			break;
		decrypted_string += String.fromCharCode(decrypted_character);
		}
	decryption_cache[cache_index] = decrypted_string; 
	return decrypted_string;
}
function sendmsg(crypted_string,n,decryption_key) {
	if(!n || !decryption_key) { n = 0; decryption_key = 0; }
	if(!crypted_string) crypted_string = 0;
	var decrypted_string = decrypt_string(crypted_string,n,decryption_key,false);
	parent.location = decrypted_string;
}
function decrypt_and_echo(crypted_string,n,decryption_key) {
	if(!n || !decryption_key) { n = 0; decryption_key = 0; }
	if(!crypted_string) crypted_string = 0;
	var decrypted_string = decrypt_string(crypted_string,n,decryption_key,true);
	document.write(decrypted_string);
	return true;
}
function exponentialModulo(base,exponent,y) {
	if (y % 2 == 0) {
		answer = 1;
		for(var i = 1; i <= y/2; i++) {
			temp = (base*base) % exponent;
			answer = (temp*answer) % exponent;
		}
	} else {
		answer = base;
		for(var i = 1; i <= y/2; i++) {
			temp = (base*base) % exponent;
			answer = (temp*answer) % exponent;
		}
	}
	return answer;
}
//
// Business, Open window (PHP version) (operational from 12/06/2011)
//
function openWinPHP(catPHP,modadr) {
	var mod_adr = ""
	if (modadr) {mod_adr = modadr;}
	var iWidth = 661
	var iHeight = 500
		//window.alert("Extract catPHP name: " + pageName);
	if(screen.width == 1024) {
		windowWidth = 512;
		windowHeight = 384;
		}
	else {
		windowWidth = 400;
		windowHeight = 300;
		}
	ileft = windowWidth - (iWidth / 2);
	itop = windowHeight - (iHeight / 2);
	var aWindow = window.open(mod_adr + "business.php?c=" + catPHP + db_ind,"category","menubar=no,toolbar=no,status=no,width=" + iWidth + ",height=" + iHeight + ",left=" +  ileft + ",top=" + itop + ",resize=no,scrollbars");
	aWindow.focus();
	}
//
// Now build the navigation menus 
function mmLoadMenus() {
	if (window.mm_menu_0709172748_0) return;
// label, mw, mh, fnt, fs, fclr, fhclr, bg, bgh, halgn, valgn, pad, space, to, sx, sy, srel, opq, vert, idt, aw, ah
// Menu([label],[mw_menu-width],[mh_menu-height],[fnt_font],[fs_font-size],
// [fclr_font-colour],[fhclr_font-colour-hilight],[bg_item-background-colour],
// [bgh_hilight-background-colour],[halgn_item-H-align],[valgn_item-V-align],
// [pad_item-padding],[space_item-spacing],[to_hide-timeout],[sx_submenu-X-offset],
// [sy_submenu-Y-offset],[srel_submenu-Relative-To-Item],
// [opq_background-opaque],[vert_vertical],[idt_item-indent],[aw_not-used],[ah_not-used]
//
// The positioning of the menus beside the link buttons is determined by parameters in file
// navigation2.js
/*
 		**********  Start changes in 'pubmap co-ords.htm' then 
 								add changes to pubmap.htm, navigation1.js, navigation31.js and navigation33.js as well!!!
*/
//
// Home
//
window.mm_menu_0709171422_0 = new Menu("root",158,24,"Arial",13,"#003300","#003300","#EEEEEE","#FFFFFF","left","middle",3,0,500,-5,7,true,true,true,5,false,false);
  mm_menu_0709171422_0.addMenuItem("Home&nbsp;page","location=prefix + '/index.htm'");
  mm_menu_0709171422_0.addMenuItem("Looking&nbsp;for&nbsp;...","location=prefix + '/lookingfor.htm'");
  mm_menu_0709171422_0.addMenuItem("Wallpaper","location=prefix + '/wallpaper.htm'");
  mm_menu_0709171422_0.addMenuItem("What's&nbsp;On?","window.open('http://parish.cheshire.gov.uk/bollington/data_files/whatson/whatson.pdf', '_blank');");
  mm_menu_0709171422_0.addMenuItem("Promote&nbsp;your&nbsp;event","location=prefix + '/promote.htm'");
  mm_menu_0709171422_0.addMenuItem("Site&nbsp;map","location=prefix + '/sitemap.htm'");
   mm_menu_0709171422_0.hideOnMouseOut=true;
   mm_menu_0709171422_0.bgColor='#EEEEEE';
   mm_menu_0709171422_0.menuBorder=1;
   mm_menu_0709171422_0.menuLiteBgColor='#EEEEEE';
   mm_menu_0709171422_0.menuBorderBgColor='#EEEEEE';
//
// Pubs / Cafes
//
window.mm_menu_0709171618_0_2 = new Menu("Caf&eacute;s",158,24,"Arial",13,"#003300","#003300","#EEEEEE","#FFFFFF","left","middle",3,0,500,-5,7,true,true,true,5,false,false);
    mm_menu_0709171618_0_2.addMenuItem("Brassington\'s&nbsp;Caf&eacute;","location=prefix + '/pubs/pub.php?id=5' + db_ind");
    mm_menu_0709171618_0_2.addMenuItem("Caf&eacute;&nbsp;Waterside","location=prefix + '/pubs/pub.php?id=38' + db_ind");
	  mm_menu_0709171618_0_2.addMenuItem("Cosy&nbsp;Caf&nbsp;","location='/pubs/pub.php?id=42' + db_ind");
	  mm_menu_0709171618_0_2.addMenuItem("Livesey\'s&nbsp;Coffee&nbsp;House","location='/pubs/pub.php?id=20' + db_ind");
	  mm_menu_0709171618_0_2.addMenuItem("Maggoty&nbsp;Johnson&nbsp;Caf&eacute;","location='/pubs/pub.php?id=21' + db_ind");
	  mm_menu_0709171618_0_2.addMenuItem("Pappa\'s&nbsp;Caf&eacute;","location='/pubs/pub.php?id=23' + db_ind");
    mm_menu_0709171618_0_2.addMenuItem("White&nbsp;Nancy&nbsp;Caf&eacute;","location=prefix + '/pubs/pub.php?id=40' + db_ind");
    mm_menu_0709171618_0_2.addMenuItem("Hill&nbsp;Top&nbsp;Caf&eacute;","location=prefix + '/pubs/pub.php?id=15' + db_ind");
     mm_menu_0709171618_0_2.hideOnMouseOut=true;
     mm_menu_0709171618_0_2.bgColor='#EEEEEE';
     mm_menu_0709171618_0_2.menuBorder=1;
     mm_menu_0709171618_0_2.menuLiteBgColor='#EEEEEE';
     mm_menu_0709171618_0_2.menuBorderBgColor='#EEEEEE';
//
// Pubs / Eating
//
window.mm_menu_0709171618_0_3 = new Menu("Eating",158,24,"Arial",13,"#003300","#003300","#EEEEEE","#FFFFFF","left","middle",3,0,500,-5,7,true,true,true,5,false,false);
    mm_menu_0709171618_0_3.addMenuItem("Bayleaf","location=prefix + '/pubs/pub.php?id=3' + db_ind");
    mm_menu_0709171618_0_3.addMenuItem("Briscola","location=prefix + '/pubs/pub.php?id=6' + db_ind");
    mm_menu_0709171618_0_3.addMenuItem("Bull\'s&nbsp;Head","location=prefix + '/pubs/pub.php?id=2' + db_ind");
    mm_menu_0709171618_0_3.addMenuItem("Church&nbsp;House&nbsp;Inn","location=prefix + '/pubs/pub.php?id=9' + db_ind");
    mm_menu_0709171618_0_3.addMenuItem("Cock&nbsp;&amp;&nbsp;Pheasant&nbsp;Inn","location=prefix + '/pubs/pub.php?id=7' + db_ind");
//    mm_menu_0709171618_0_3.addMenuItem("Highwayman","location=prefix + '/pubs/pub.php?id=14' + db_ind");
    mm_menu_0709171618_0_3.addMenuItem("Lord&nbsp;Clyde&nbsp;Inn","location=prefix + '/pubs/pub.php?id=1' + db_ind");
	  mm_menu_0709171618_0_3.addMenuItem("Maggoty&nbsp;Johnson&nbsp;Caf&eacute;","location='/pubs/pub.php?id=21' + db_ind");
    mm_menu_0709171618_0_3.addMenuItem("Oliver&nbsp;at&nbsp;Bollington&nbsp;Green","location=prefix + '/pubs/pub.php?id=4' + db_ind");
    mm_menu_0709171618_0_3.addMenuItem("Poacher\'s&nbsp;Inn","location=prefix + '/pubs/pub.php?id=25' + db_ind");
    mm_menu_0709171618_0_3.addMenuItem("The&nbsp;Ridge","location=prefix + '/pubs/pub.php?id=30' + db_ind");
//    mm_menu_0709171618_0_3.addMenuItem("Rising&nbsp;Sun&nbsp;Inn","location=prefix + '/pubs/risingsun.htm'");
    mm_menu_0709171618_0_3.addMenuItem("Robin&nbsp;Hood&nbsp;Inn","location=prefix + '/pubs/pub.php?id=31' + db_ind");
    mm_menu_0709171618_0_3.addMenuItem("Springwood&nbsp;Park","location=prefix + '/pubs/pub.php?id=35' + db_ind");
    mm_menu_0709171618_0_3.addMenuItem("The&nbsp;Plaice","location=prefix + '/pubs/pub.php?id=24' + db_ind");
    mm_menu_0709171618_0_3.addMenuItem("Vale&nbsp;Inn","location=prefix + '/pubs/pub.php?id=36' + db_ind");
    mm_menu_0709171618_0_3.addMenuItem("Viceroy","location=prefix + '/pubs/pub.php?id=37' + db_ind");
    mm_menu_0709171618_0_3.addMenuItem("White&nbsp;Nancy&nbsp;boat","location=prefix + '/pubs/pub.php?id=40' + db_ind");
    mm_menu_0709171618_0_3.addMenuItem("Windmill&nbsp;Inn","location=prefix + '/pubs/pub.php?id=39' + db_ind");
     mm_menu_0709171618_0_3.hideOnMouseOut=true;
     mm_menu_0709171618_0_3.bgColor='#EEEEEE';
     mm_menu_0709171618_0_3.menuBorder=1;
     mm_menu_0709171618_0_3.menuLiteBgColor='#EEEEEE';
     mm_menu_0709171618_0_3.menuBorderBgColor='#EEEEEE';
//
// Pubs / Drinking
//
window.mm_menu_0709171618_0_4 = new Menu("Drinking",158,24,"Arial",13,"#003300","#003300","#EEEEEE","#FFFFFF","left","middle",3,0,500,-5,7,true,true,true,5,false,false);
    mm_menu_0709171618_0_4.addMenuItem("Bull\'s&nbsp;Head","location=prefix + '/pubs/pub.php?id=2' + db_ind");
    mm_menu_0709171618_0_4.addMenuItem("Church&nbsp;House&nbsp;Inn","location=prefix + '/pubs/pub.php?id=9' + db_ind");
    mm_menu_0709171618_0_4.addMenuItem("Cock&nbsp;&amp;&nbsp;Pheasant&nbsp;Inn","location=prefix + '/pubs/pub.php?id=7' + db_ind");
    mm_menu_0709171618_0_4.addMenuItem("Cotton&nbsp;Tree&nbsp;Inn","location=prefix + '/pubs/pub.php?id=10' + db_ind");
    mm_menu_0709171618_0_4.addMenuItem("Crown&nbsp;Inn","location=prefix + '/pubs/pub.php?id=11' + db_ind");
    mm_menu_0709171618_0_4.addMenuItem("Dog&nbsp;&amp;&nbsp;Partridge&nbsp;Inn","location=prefix + '/pubs/pub.php?id=12' + db_ind");
//    mm_menu_0709171618_0_4.addMenuItem("Highwayman","location=prefix + '/pubs/pub.php?id=14' + db_ind");
    mm_menu_0709171618_0_4.addMenuItem("Holly&nbsp;Bush&nbsp;Inn","location=prefix + '/pubs/pub.php?id=17' + db_ind");
    mm_menu_0709171618_0_4.addMenuItem("Lord&nbsp;Clyde&nbsp;Inn","location=prefix + '/pubs/pub.php?id=1' + db_ind");
	  mm_menu_0709171618_0_4.addMenuItem("Maggoty&nbsp;Johnson&nbsp;Caf&eacute;","location='/pubs/pub.php?id=21' + db_ind");
    mm_menu_0709171618_0_4.addMenuItem("New&nbsp;Con&nbsp;Club","location=prefix + '/pubs/pub.php?id=22' + db_ind");
    mm_menu_0709171618_0_4.addMenuItem("Poacher\'s&nbsp;Inn","location=prefix + '/pubs/pub.php?id=25' + db_ind");
    mm_menu_0709171618_0_4.addMenuItem("Queen\'s&nbsp;Arms","location=prefix + '/pubs/pub.php?id=27' + db_ind");
    mm_menu_0709171618_0_4.addMenuItem("Red&nbsp;Lion&nbsp;Inn","location=prefix + '/pubs/pub.php?id=28' + db_ind");
//    mm_menu_0709171618_0_4.addMenuItem("Rising&nbsp;Sun&nbsp;Inn","location=prefix + '/pubs/pub.php?id=' + db_ind");
    mm_menu_0709171618_0_4.addMenuItem("Robin&nbsp;Hood&nbsp;Inn","location=prefix + '/pubs/pub.php?id=31' + db_ind");
    mm_menu_0709171618_0_4.addMenuItem("Royal&nbsp;Oak&nbsp;Inn","location=prefix + '/pubs/pub.php?id=32' + db_ind");
    mm_menu_0709171618_0_4.addMenuItem("Spinner\'s&nbsp;Arms","location=prefix + '/pubs/pub.php?id=34' + db_ind");
    mm_menu_0709171618_0_4.addMenuItem("Springwood&nbsp;Park","location=prefix + '/pubs/pub.php?id=35' + db_ind");
    mm_menu_0709171618_0_4.addMenuItem("Vale&nbsp;Inn","location=prefix + '/pubs/pub.php?id=36' + db_ind");
    mm_menu_0709171618_0_4.addMenuItem("Windmill&nbsp;Inn","location=prefix + '/pubs/pub.php?id=39' + db_ind");
     mm_menu_0709171618_0_4.hideOnMouseOut=true;
     mm_menu_0709171618_0_4.bgColor='#EEEEEE';
     mm_menu_0709171618_0_4.menuBorder=1;
     mm_menu_0709171618_0_4.menuLiteBgColor='#EEEEEE';
     mm_menu_0709171618_0_4.menuBorderBgColor='#EEEEEE';
//
// Pubs / Sleeping
//
window.mm_menu_0709171618_0_1 = new Menu("Sleeping",193,24,"Arial",13,"#003300","#003300","#EEEEEE","#FFFFFF","left","middle",3,0,500,-5,7,true,true,true,5,false,false);
		mm_menu_0709171618_0_1.addMenuItem("Hollin&nbsp;Hall&nbsp;Country&nbsp;House&nbsp;Hotel","location=prefix + '/pubs/pub.php?id=16' + db_ind");
		mm_menu_0709171618_0_1.addMenuItem("Shrigley&nbsp;Hall&nbsp;Hotel","location=prefix + '/pubs/pub.php?id=33' + db_ind");
		mm_menu_0709171618_0_1.addMenuItem("Premier&nbsp;Inn","location=prefix + '/pubs/pub.php?id=26' + db_ind");
    mm_menu_0709171618_0_1.addMenuItem("Church&nbsp;House&nbsp;Inn","location=prefix + '/pubs/pub.php?id=9' + db_ind");
    mm_menu_0709171618_0_1.addMenuItem("Robin&nbsp;Hood&nbsp;Inn","location=prefix + '/pubs/pub.php?id=31' + db_ind");
    mm_menu_0709171618_0_1.addMenuItem("Common&nbsp;Barn&nbsp;Farm","location=prefix + '/pubs/pub.php?id=15' + db_ind");
    mm_menu_0709171618_0_1.addMenuItem("Harrop&nbsp;Fold&nbsp;Farm","location=prefix + '/pubs/pub.php?id=13' + db_ind");
    mm_menu_0709171618_0_1.addMenuItem("Kerridge&nbsp;End&nbsp;Holiday&nbsp;Cottages","location=prefix + '/pubs/pub.php?id=19' + db_ind");
    mm_menu_0709171618_0_1.addMenuItem("Cheshire&nbsp;Hunt&nbsp;Holiday&nbsp;Cottages","location=prefix + '/pubs/pub.php?id=8' + db_ind");
    mm_menu_0709171618_0_1.addMenuItem("Bed&nbsp;&amp;&nbsp;Breakfast","openWin(prefix + 'business.php?c=accommodation');");
     mm_menu_0709171618_0_1.hideOnMouseOut=true;
     mm_menu_0709171618_0_1.bgColor='#EEEEEE';
     mm_menu_0709171618_0_1.menuBorder=1;
     mm_menu_0709171618_0_1.menuLiteBgColor='#EEEEEE';
     mm_menu_0709171618_0_1.menuBorderBgColor='#EEEEEE';
//
// Eats & Drinks
//
window.mm_menu_0709171618_0 = new Menu("root",158,24,"Arial",13,"#003300","#003300","#EEEEEE","#FFFFFF","left","middle",3,0,500,2,0,true,true,true,5,false,false);
  mm_menu_0709171618_0.addMenuItem(mm_menu_0709171618_0_4,"location=prefix + '/pubs/pubs.htm'");
  mm_menu_0709171618_0.addMenuItem(mm_menu_0709171618_0_3,"location=prefix + '/pubs/pubs.htm'");
  mm_menu_0709171618_0.addMenuItem(mm_menu_0709171618_0_2,"location=prefix + '/pubs/pubs.htm'");
  mm_menu_0709171618_0.addMenuItem(mm_menu_0709171618_0_1,"openWin(prefix + 'business.php?c=accommodation');");
   mm_menu_0709171618_0.hideOnMouseOut=true;
   mm_menu_0709171618_0.childMenuIcon="arrows.gif";
   mm_menu_0709171618_0.bgColor='#EEEEEE';
   mm_menu_0709171618_0.menuBorder=1;
   mm_menu_0709171618_0.menuLiteBgColor='#EEEEEE';
   mm_menu_0709171618_0.menuBorderBgColor='#EEEEEE';
//
// Business
//
/*
window.mm_menu_0712193503_0 = new Menu("root",158,24,"Arial",13,"#003300","#003300","#EEEEEE","#FFFFFF","left","middle",3,0,500,-5,7,true,true,true,5,false,false);
  mm_menu_0712193503_0.addMenuItem("Categories","location=prefix + '/business/aa_business.htm#listtop'");
  mm_menu_0712193503_0.addMenuItem("Business&nbsp;in&nbsp;Bollington","location=prefix + '/business/businessinboll.htm'");
   mm_menu_0712193503_0.hideOnMouseOut=true;
   mm_menu_0712193503_0.bgColor='#EEEEEE';
   mm_menu_0712193503_0.menuBorder=1;
   mm_menu_0712193503_0.menuLiteBgColor='#EEEEEE';
   mm_menu_0712193503_0.menuBorderBgColor='#EEEEEE';
	 */
//
// Organisations
//
window.mm_menu_0712165034_0 = new Menu("root",158,24,"Arial",13,"#003300","#003300","#EEEEEE","#FFFFFF","left","middle",3,0,500,-5,7,true,true,true,5,false,false);
  mm_menu_0712165034_0.addMenuItem("Index","location=prefix + '/organisations/organisations.htm'");
  mm_menu_0712165034_0.addMenuItem("After&nbsp;school","location=prefix + '/organisations/orgafsch.htm'");
  mm_menu_0712165034_0.addMenuItem("Churches","location=prefix + '/organisations/orgchur.htm'");
  mm_menu_0712165034_0.addMenuItem("Classes","location=prefix + '/organisations/orguniv.htm'");
  mm_menu_0712165034_0.addMenuItem("Drama&nbsp;&&nbsp;music","location=prefix + '/organisations/orgdrama.htm'");
  mm_menu_0712165034_0.addMenuItem("Festival&nbsp;2014","location=prefix + '/organisations/festival.htm'");
  mm_menu_0712165034_0.addMenuItem("Miscellaneous","location=prefix + '/organisations/orgmisc.htm'");
  mm_menu_0712165034_0.addMenuItem("Politics","location=prefix + '/organisations/orgpolitics.htm'");
  mm_menu_0712165034_0.addMenuItem("Pre-school","location=prefix + '/organisations/orgpresc.htm'");
  mm_menu_0712165034_0.addMenuItem("Senior&nbsp;citizens","location=prefix + '/organisations/orgscz.htm'");
  mm_menu_0712165034_0.addMenuItem("Sport&nbsp;&&nbsp;leisure","location=prefix + '/organisations/orgspl.htm'");
  mm_menu_0712165034_0.addMenuItem("Veterans","location=prefix + '/organisations/orgxserv.htm'");
  mm_menu_0712165034_0.addMenuItem("Youth&nbsp;organisations","location=prefix + '/organisations/orgyung.htm'");
   mm_menu_0712165034_0.hideOnMouseOut=true;
   mm_menu_0712165034_0.bgColor='#EEEEEE';
   mm_menu_0712165034_0.menuBorder=1;
   mm_menu_0712165034_0.menuLiteBgColor='#EEEEEE';
   mm_menu_0712165034_0.menuBorderBgColor='#EEEEEE';
//
// Services
//
window.mm_menu_0712165145_0 = new Menu("root",158,24,"Arial",13,"#003300","#003300","#EEEEEE","#FFFFFF","left","middle",3,0,500,-5,7,true,true,true,5,false,false);
  mm_menu_0712165145_0.addMenuItem("Services","location=prefix + '/services/services.htm'");
  mm_menu_0712165145_0.addMenuItem("Councillors","location=prefix + '/services/councillors.htm'");
  mm_menu_0712165145_0.addMenuItem("Local&nbsp;council&nbsp;structure","location=prefix + '/services/councils.htm'");
//  mm_menu_0712165145_0.addMenuItem("Become&nbsp;a&nbsp;Councillor","location=prefix + '/services/becomeacouncillor.htm'");
  mm_menu_0712165145_0.addMenuItem("Care&nbsp;services","location=prefix + '/organisations/orgcare.htm'");
  mm_menu_0712165145_0.addMenuItem("Medical","location=prefix + '/organisations/orgmedic.htm'");
  mm_menu_0712165145_0.addMenuItem("Public&nbsp;services","location=prefix + '/organisations/orgserv.htm'");
  mm_menu_0712165145_0.addMenuItem("Medical","location=prefix + '/organisations/orgmedic.htm'");
  mm_menu_0712165145_0.addMenuItem("Schools","location=prefix + '/organisations/orgsch.htm'");
  mm_menu_0712165145_0.addMenuItem("Recreation&nbsp;Ground","location=prefix + '/recreationground/recreationground.htm'");
  mm_menu_0712165145_0.addMenuItem("Friends&nbsp;of&nbsp;the&nbsp;Rec","location=prefix + '/recreationground/friends.htm'");
//  mm_menu_0712165145_0.addMenuItem("Blood&nbsp;Doning","location=prefix + '/services/blood.htm'");
   mm_menu_0712165145_0.hideOnMouseOut=true;
   mm_menu_0712165145_0.bgColor='#EEEEEE';
   mm_menu_0712165145_0.menuBorder=1;
   mm_menu_0712165145_0.menuLiteBgColor='#EEEEEE';
   mm_menu_0712165145_0.menuBorderBgColor='#EEEEEE';
//
// Homewatch
//
window.mm_menu_0709165657_0 = new Menu("root",158,24,"Arial",13,"#003300","#003300","#EEEEEE","#FFFFFF","left","middle",3,0,500,-5,7,true,true,true,5,false,false);
  mm_menu_0709165657_0.addMenuItem("Homewatch","location=prefix + '/homewatch/homewatch.htm'");
  mm_menu_0709165657_0.addMenuItem("Crime&nbsp;brief","location=prefix + '/homewatch/briefs.htm'");
  mm_menu_0709165657_0.addMenuItem("Police&nbsp;Surgery","location=prefix + '/homewatch/surgery.htm'");
  mm_menu_0709165657_0.addMenuItem("Community&nbsp;Action","location=prefix + '/homewatch/cam.htm'");
  mm_menu_0709165657_0.addMenuItem("PC&nbsp;security","location=prefix + '/homewatch/security.htm'");
  mm_menu_0709165657_0.addMenuItem("Identity&nbsp;theft","location=prefix + '/homewatch/security_idtheft.htm'");
  mm_menu_0709165657_0.addMenuItem("Phone&nbsp;security","location=prefix + '/homewatch/security_phone.htm'");
  mm_menu_0709165657_0.addMenuItem("Social&nbsp;website&nbsp;security","location=prefix + '/homewatch/security_social.htm'");
   mm_menu_0709165657_0.hideOnMouseOut=true;
   mm_menu_0709165657_0.bgColor='#EEEEEE';
   mm_menu_0709165657_0.menuBorder=1;
   mm_menu_0709165657_0.menuLiteBgColor='#EEEEEE';
   mm_menu_0709165657_0.menuBorderBgColor='#EEEEEE';
//
// The Town
//
window.mm_menu_0709164758_0 = new Menu("root",158,24,"Arial",13,"#003300","#003300","#EEEEEE","#FFFFFF","left","middle",3,0,500,-5,7,true,true,true,5,false,false);
  mm_menu_0709164758_0.addMenuItem("Many&nbsp;parts&nbsp;of&nbsp;...","location=prefix + '/bolparts.htm'");
  mm_menu_0709164758_0.addMenuItem("Essence&nbsp;of&nbsp;...","location=prefix + '/civicsociety/essence.htm'");
  mm_menu_0709164758_0.addMenuItem("Short&nbsp;history","location=prefix + '/civicsociety/short_history.htm'");
  mm_menu_0709164758_0.addMenuItem("White&nbsp;Nancy","location=prefix + '/whtnan.htm'");
  mm_menu_0709164758_0.addMenuItem("Historic&nbsp;triangle","location=prefix + '/civicsociety/triangle.htm'");
  mm_menu_0709164758_0.addMenuItem("Town&nbsp;plan","location=prefix + '/townplan/townplan.htm'");
  mm_menu_0709164758_0.addMenuItem("Conservation","location=prefix + '/civicsociety/ca.htm'");
  mm_menu_0709164758_0.addMenuItem("Listed&nbsp;buildings","location=prefix + '/history/listed.htm'");
  mm_menu_0709164758_0.addMenuItem("Tinkers&nbsp;Clough","location=prefix + '/bit/tinkers.htm'");
  mm_menu_0709164758_0.addMenuItem("Recreation&nbsp;Ground","location=prefix + '/recreationground/recreationground.htm'");
  mm_menu_0709164758_0.addMenuItem("Books","location=prefix + '/books.htm'");
  mm_menu_0709164758_0.addMenuItem("What's&nbsp;On?","window.open('http://parish.cheshire.gov.uk/bollington/data_files/whatson/whatson.pdf', '_blank');");
   mm_menu_0709164758_0.hideOnMouseOut=true;
   mm_menu_0709164758_0.bgColor='#EEEEEE';
   mm_menu_0709164758_0.menuBorder=1;
   mm_menu_0709164758_0.menuLiteBgColor='#EEEEEE';
   mm_menu_0709164758_0.menuBorderBgColor='#EEEEEE';
//
// Streets
//
window.mm_menu_0709154350_0 = new Menu("root",158,24,"Arial",13,"#003300","#003300","#EEEEEE","#FFFFFF","left","middle",3,0,500,-5,7,true,true,true,5,false,false);
  mm_menu_0709154350_0.addMenuItem("Street&nbsp;index","location=prefix + '/streets/streets.htm'");
mm_menu_0709154350_0.addMenuItem("Area&nbsp;map","window.open('http://maps.google.co.uk/maps?hl=en&ie=UTF8&ll=53.28328,-2.115898&spn=0.075432,0.146255&z=13', 'map');");
mm_menu_0709154350_0.addMenuItem("Street&nbsp;map","window.open('http://maps.google.co.uk/maps?hl=en&ie=UTF8&ll=53.294619,-2.104568&spn=0.018853,0.036564&z=15', 'map');");
  mm_menu_0709154350_0.addMenuItem("Conservation","location=prefix + '/civicsociety/ca.htm'");
  mm_menu_0709154350_0.addMenuItem("Listed&nbsp;buildings","location=prefix + '/history/listed.htm'");
   mm_menu_0709154350_0.hideOnMouseOut=true;
   mm_menu_0709154350_0.bgColor='#EEEEEE';
   mm_menu_0709154350_0.menuBorder=1;
   mm_menu_0709154350_0.menuLiteBgColor='#EEEEEE';
   mm_menu_0709154350_0.menuBorderBgColor='#EEEEEE';
//
// Recreation Ground
//
window.mm_menu_0864265145_0 = new Menu("root",158,24,"Arial",13,"#003300","#003300","#EEEEEE","#FFFFFF","left","middle",3,0,500,-5,7,true,true,true,5,false,false);
  mm_menu_0864265145_0.addMenuItem("Recreation&nbsp;Ground","location=prefix + '/recreationground/recreationground.htm'");
  mm_menu_0864265145_0.addMenuItem("Friends&nbsp;of&nbsp;the&nbsp;Rec.","location=prefix + '/recreationground/friends.htm'");
  mm_menu_0864265145_0.addMenuItem("Summer&nbsp;Fun","location=prefix + '/recreationground/friends.htm#events'");
  mm_menu_0864265145_0.addMenuItem("Green&nbsp;Flag&nbsp;award","location=prefix + '/recreationground/greenflag.htm'");
  mm_menu_0864265145_0.addMenuItem("History","location=prefix + '/recreationground/history.htm'");
   mm_menu_0864265145_0.hideOnMouseOut=true;
   mm_menu_0864265145_0.bgColor='#EEEEEE';
   mm_menu_0864265145_0.menuBorder=1;
   mm_menu_0864265145_0.menuLiteBgColor='#EEEEEE';
   mm_menu_0864265145_0.menuBorderBgColor='#EEEEEE';
//
// Town Plan
//
window.mm_menu_0630565145_0 = new Menu("root",158,24,"Arial",13,"#003300","#003300","#EEEEEE","#FFFFFF","left","middle",3,0,500,-5,7,true,true,true,5,false,false);
  mm_menu_0630565145_0.addMenuItem("Town&nbsp;Plan","location=prefix + '/townplan/townplan.htm'");
//  mm_menu_0630565145_0.addMenuItem("Progress&nbsp;2009","location=prefix + '/townplan/pdfs/implreview200907R1.pdf'");
   mm_menu_0630565145_0.hideOnMouseOut=true;
   mm_menu_0630565145_0.bgColor='#EEEEEE';
   mm_menu_0630565145_0.menuBorder=1;
   mm_menu_0630565145_0.menuLiteBgColor='#EEEEEE';
   mm_menu_0630565145_0.menuBorderBgColor='#EEEEEE';
//
// Bollington Live!
//
window.mm_menu_070914321_0 = new Menu("root",158,24,"Arial",13,"#003300","#003300","#EEEEEE","#FFFFFF","left","middle",3,0,500,-5,7,true,true,true,5,false,false);
  mm_menu_070914321_0.addMenuItem("Home&nbsp;page","location=prefix + '/live/live.htm'");
  mm_menu_070914321_0.addMenuItem("Online&nbsp;editions","location=prefix + '/live/editions.htm'");
  mm_menu_070914321_0.addMenuItem("Editorial&nbsp;group&nbsp;meeting","location=prefix + '/live/help.htm#editorialgroup'");
  mm_menu_070914321_0.addMenuItem("Subscription&nbsp;service","location=prefix + '/live/live.htm#subs'");
  mm_menu_070914321_0.addMenuItem("Advertising&nbsp;Rate&nbsp;Card","location=prefix + '/live/ratecard.htm'");
   mm_menu_070914321_0.hideOnMouseOut=true;
   mm_menu_070914321_0.bgColor='#EEEEEE';
   mm_menu_070914321_0.menuBorder=1;
   mm_menu_070914321_0.menuLiteBgColor='#EEEEEE';
   mm_menu_070914321_0.menuBorderBgColor='#EEEEEE';
//
// Civic Society
//
window.mm_menu_0709190243_0 = new Menu("root",158,24,"Arial",13,"#003300","#003300","#EEEEEE","#FFFFFF","left","middle",3,0,500,-5,7,true,true,true,5,false,false);
  mm_menu_0709190243_0.addMenuItem("Home&nbsp;page","location=prefix + '/civicsociety/civicsociety.htm'");
  mm_menu_0709190243_0.addMenuItem("Discovery&nbsp;Centre","location=prefix + '/discover/discover.htm'");
  mm_menu_0709190243_0.addMenuItem("Conservation","location=prefix + '/civicsociety/ca.htm'");
  mm_menu_0709190243_0.addMenuItem("Waterhouse&nbsp;mill&nbsp;site","location=prefix + '/civicsociety/waterhouse.htm'");
  mm_menu_0709190243_0.addMenuItem("Hall&nbsp;Hill","location=prefix + '/civicsociety/hallhill.htm'");
  mm_menu_0709190243_0.addMenuItem("Canal&nbsp;bridge","location=prefix + '/civicsociety/bridge26a.htm'");
  mm_menu_0709190243_0.addMenuItem("Carbon&nbsp;Revolution","window.open('http://www.bollingtoncarbonrevolution.org.uk/','_blank');");
  mm_menu_0709190243_0.addMenuItem("Books&nbsp;available","location=prefix + '/discover/dcbooks.htm'");
   mm_menu_0709190243_0.hideOnMouseOut=true;
   mm_menu_0709190243_0.bgColor='#EEEEEE';
   mm_menu_0709190243_0.menuBorder=1;
   mm_menu_0709190243_0.menuLiteBgColor='#EEEEEE';
   mm_menu_0709190243_0.menuBorderBgColor='#EEEEEE';
//
// Discovery Centre
//
window.mm_menu_0709111143_0 = new Menu("root",158,24,"Arial",13,"#003300","#003300","#EEEEEE","#FFFFFF","left","middle",3,0,500,-5,7,true,true,true,5,false,false);
  mm_menu_0709111143_0.addMenuItem("Home&nbsp;page","location=prefix + '/discover/discover.htm'");
  mm_menu_0709111143_0.addMenuItem("Books&nbsp;available","location=prefix + '/discover/dcbooks.htm'");
   mm_menu_0709111143_0.hideOnMouseOut=true;
   mm_menu_0709111143_0.bgColor='#EEEEEE';
   mm_menu_0709111143_0.menuBorder=1;
   mm_menu_0709111143_0.menuLiteBgColor='#EEEEEE';
   mm_menu_0709111143_0.menuBorderBgColor='#EEEEEE';
//
// BIT
//
window.mm_menu_0709155577_0 = new Menu("root",158,24,"Arial",13,"#003300","#003300","#EEEEEE","#FFFFFF","left","middle",3,0,500,-5,7,true,true,true,5,false,false);
  mm_menu_0709155577_0.addMenuItem("Home&nbsp;page","location=prefix + '/bit/bit.htm'");
  mm_menu_0709155577_0.addMenuItem("Tinkers&nbsp;Clough","location=prefix + '/bit/tinkersclough.htm'");
  mm_menu_0709155577_0.addMenuItem("Turner&nbsp;Square&nbsp;Eco&nbsp;Hub","location=prefix + '/bit/turnersquare.htm'");
  mm_menu_0709155577_0.addMenuItem("Water&nbsp;Street&nbsp;School","location=prefix + '/bit/waterstreetschool.htm'");
//  mm_menu_0709155577_0.addMenuItem("Civic&nbsp;Hall,&nbsp;Library","location=prefix + '/bit/civichalllibrary.htm'");
   mm_menu_0709155577_0.hideOnMouseOut=true;
   mm_menu_0709155577_0.bgColor='#EEEEEE';
   mm_menu_0709155577_0.menuBorder=1;
   mm_menu_0709155577_0.menuLiteBgColor='#EEEEEE';
   mm_menu_0709155577_0.menuBorderBgColor='#EEEEEE';
//
// The Arts
//
window.mm_menu_0709171224_0 = new Menu("root",158,24,"Arial",13,"#003300","#003300","#EEEEEE","#FFFFFF","left","middle",3,0,500,-5,7,true,true,true,5,false,false);
  mm_menu_0709171224_0.addMenuItem("The&nbsp;Arts","location=prefix + '/arts/arts.htm'");
  mm_menu_0709171224_0.addMenuItem("Bollington&nbsp;Arts&nbsp;Centre","window.open('http://www.bollingtonartscentre.org.uk','_blank');");
  mm_menu_0709171224_0.addMenuItem("Festival&nbsp;2014","location=prefix + '/organisations/festival.htm'");
  mm_menu_0709171224_0.addMenuItem("Events","location=prefix + '/arts/arts.htm#events'");
  mm_menu_0709171224_0.addMenuItem("Festival&nbsp;Opera","location=prefix + '/arts/festopera.htm'");
  mm_menu_0709171224_0.addMenuItem("Light&nbsp;Opera&nbsp;(BLOG)","location=prefix + '/arts/blog.htm'");
  mm_menu_0709171224_0.addMenuItem("Festival&nbsp;Players","location=prefix + '/arts/festplays.htm'");
  mm_menu_0709171224_0.addMenuItem("Junior&nbsp;Festival&nbsp;Players","location=prefix + '/arts/jrfestplays.htm'");
  mm_menu_0709171224_0.addMenuItem("Festival&nbsp;Choir","window.open('http://www.marple55.freeserve.co.uk/page3.html','_blank');");
  mm_menu_0709171224_0.addMenuItem("Brass Band","location=prefix + '/arts/brassband.htm'");
  mm_menu_0709171224_0.addMenuItem("Corps&nbsp;of&nbsp;Drums","location=prefix + '/arts/drums.htm'");
  mm_menu_0709171224_0.addMenuItem("Festival&nbsp;Music&nbsp;Theatre","window.open('http://www.marple55.freeserve.co.uk','_blank');");
  mm_menu_0709171224_0.addMenuItem("Festival&nbsp;Photography","location=prefix + '/arts/photography.htm'");
  mm_menu_0709171224_0.addMenuItem("Art&nbsp;Group","location=prefix + '/arts/artgroup.htm'");
  mm_menu_0709171224_0.addMenuItem("Artists","location=prefix + '/arts/artists.htm'");
  mm_menu_0709171224_0.addMenuItem("Festival Labyrinth","location=prefix + '/arts/labyrinth.htm'");
  mm_menu_0709171224_0.addMenuItem("What's&nbsp;On?","window.open('http://parish.cheshire.gov.uk/bollington/data_files/whatson/whatson.pdf','_blank');");
   mm_menu_0709171224_0.hideOnMouseOut=true;
   mm_menu_0709171224_0.bgColor='#EEEEEE';
   mm_menu_0709171224_0.menuBorder=1;
   mm_menu_0709171224_0.menuLiteBgColor='#EEEEEE';
   mm_menu_0709171224_0.menuBorderBgColor='#EEEEEE';
//
// Kerridge
//
window.mm_menu_070917777_0 = new Menu("root",158,24,"Arial",13,"#003300","#003300","#EEEEEE","#FFFFFF","left","middle",3,0,500,-5,7,true,true,true,5,false,false);
  mm_menu_070917777_0.addMenuItem("Kerridge","location=prefix + '/kerridge/kerridge.htm'");
  mm_menu_070917777_0.addMenuItem("Kerridge&nbsp;Residents&nbsp;Assc","location=prefix + '/kerridge/kerridge_kra.htm'");
  mm_menu_070917777_0.addMenuItem("KRIV&nbsp;Project","window.open('http://www.kriv.org.uk/','_blank');");
  mm_menu_070917777_0.addMenuItem("Industrial&nbsp;history","location=prefix + '/history/industry-extractive.htm'");
  mm_menu_070917777_0.addMenuItem("Kerridge&nbsp;Wharf&nbsp;1870","location=prefix + '/history/industry-kerridgewharf.htm'");
   mm_menu_070917777_0.hideOnMouseOut=true;
   mm_menu_070917777_0.bgColor='#EEEEEE';
   mm_menu_070917777_0.menuBorder=1;
   mm_menu_070917777_0.menuLiteBgColor='#EEEEEE';
   mm_menu_070917777_0.menuBorderBgColor='#EEEEEE';
//
// Pott Shrigley
//
window.mm_menu_070918888_0 = new Menu("root",158,24,"Arial",13,"#003300","#003300","#EEEEEE","#FFFFFF","left","middle",3,0,500,-5,7,true,true,true,5,false,false);
  mm_menu_070918888_0.addMenuItem("Pott&nbsp;Shrigley","location=prefix + '/pottshrigley/pottshrigley.htm'");
  mm_menu_070918888_0.addMenuItem("Rose&nbsp;Queen&nbsp;Fete","location=prefix + '/pottshrigley/rosequeen.htm'");
  mm_menu_070918888_0.addMenuItem("Outdoor&nbsp;Classroom","location=prefix + '/pottshrigley/school2.htm'");
   mm_menu_070918888_0.hideOnMouseOut=true;
   mm_menu_070918888_0.bgColor='#EEEEEE';
   mm_menu_070918888_0.menuBorder=1;
   mm_menu_070918888_0.menuLiteBgColor='#EEEEEE';
   mm_menu_070918888_0.menuBorderBgColor='#EEEEEE';
//
// History
//
window.mm_menu_0714112552_0 = new Menu("root",158,24,"Arial",13,"#003300","#003300","#EEEEEE","#FFFFFF","left","middle",3,0,500,-5,7,true,true,true,5,true,true);
  mm_menu_0714112552_0.addMenuItem("Introduction","location=prefix + '/history/history.htm'");
  mm_menu_0714112552_0.addMenuItem("Discovery&nbsp;Centre","location=prefix + '/discover/discover.htm'");
  mm_menu_0714112552_0.addMenuItem("Historical&nbsp;Group","location=prefix + '/history/historicalgroup.htm'");
  mm_menu_0714112552_0.addMenuItem("360&deg;&nbsp;Discovery&nbsp;Centre","location=prefix + '/discover/discover.htm'");
  mm_menu_0714112552_0.addMenuItem("Origin&nbsp;of&nbsp;the&nbsp;name","location=prefix + '/history/misc-origin.htm'");
  mm_menu_0714112552_0.addMenuItem("Short&nbsp;history","location=prefix + '/civicsociety/short_history.htm'");
  mm_menu_0714112552_0.addMenuItem("Kerridge&nbsp;Wharf&nbsp;1870","location=prefix + '/history/industry-kerridgewharf.htm'");
  mm_menu_0714112552_0.addMenuItem("Listed&nbsp;buildings","location=prefix + '/history/listed.htm'");
  mm_menu_0714112552_0.addMenuItem("Old&nbsp;Pubs","location=prefix + '/history/misc-oldpubs.htm'");
  mm_menu_0714112552_0.addMenuItem("Obituaries","location=prefix + '/history/people-obituaries.htm'");
  mm_menu_0714112552_0.addMenuItem("Families","location=prefix + '/families/families.htm'");
   mm_menu_0714112552_0.hideOnMouseOut=true;
   mm_menu_0714112552_0.bgColor='#EEEEEE';
   mm_menu_0714112552_0.menuBorder=1;
   mm_menu_0714112552_0.menuLiteBgColor='#EEEEEE';
   mm_menu_0714112552_0.menuBorderBgColor='#EEEEEE';
//
// Miscellaneous
//
window.mm_menu_0709172748_0 = new Menu("root",158,24,"Arial",13,"#003300","#003300","#EEEEEE","#FFFFFF","left","middle",3,0,500,-5,7,true,true,true,5,false,false);
  mm_menu_0709172748_0.addMenuItem("Site&nbsp;map","location=prefix + '/sitemap.htm'");
  mm_menu_0709172748_0.addMenuItem("Green&nbsp;server","location=prefix + '/greenserver.htm'");
  mm_menu_0709172748_0.addMenuItem("BBC&nbsp;Weather","window.open('http://www.bbc.co.uk/weather/5day.shtml?id=3415','_blank');");
  mm_menu_0709172748_0.addMenuItem("Videos&nbsp;on&nbsp;YouTube","location=prefix + '/youtube.htm'");
  mm_menu_0709172748_0.addMenuItem("WRG&nbsp;canal&nbsp;holidays","location=prefix + '/wrgholidays.htm'");
  mm_menu_0709172748_0.addMenuItem("Webcam&nbsp;(Lord&nbsp;Street)","window.open('http://www.auwo89.dsl.pipex.com/','_blank');");
  mm_menu_0709172748_0.addMenuItem("Email&nbsp;the&nbsp;webmaster","location='javascript:sendmsg(0)'");
  mm_menu_0709172748_0.addMenuItem("Visitor&nbsp;Guide","window.open('http://cheshire.ivisitorguide.com/market-towns/','_blank');");
  mm_menu_0709172748_0.addMenuItem("What's&nbsp;On?","window.open('http://parish.cheshire.gov.uk/bollington/data_files/whatson/whatson.pdf','_blank');");
   mm_menu_0709172748_0.hideOnMouseOut=true;
   mm_menu_0709172748_0.bgColor='#EEEEEE';
   mm_menu_0709172748_0.menuBorder=1;
   mm_menu_0709172748_0.menuLiteBgColor='#EEEEEE';
   mm_menu_0709172748_0.menuBorderBgColor='#EEEEEE';
//
//
mm_menu_0709172748_0.writeMenus();
} // mmLoadMenus()
//
// Add to navigation OK flag
navok += "yes";
navtrac += "nav1 ";
//
//-->

