var MENU_POS = [
{
	// item sizes
	'height': 27,
	'width': 80,
	// offsets between items of the same level
	'top': 25,
	'left': -5,
	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	'hide_delay': 400,
	'css' : {
		'outer' : ['m0l0oout', 'm0l0oover'],
		'inner' : ['m0l0iout', 'm0l0iover']
	}	
},
{
	'width': 140,
	'block_top': 0,
	'block_left': -140, 
	'css' : {
		'outer' : ['m0l1oout', 'm0l1oover'],
		'inner' : ['m0l1iout', 'm0l1iover']
	}
}
];

var MENU_ITEMS = [
	['Our Parish','', {'tw' : 'content'},
		['Contact Us','http://www.st-gerard.org/contactus.html', {'' : 'content'}],
		['Membership','http://www.st-gerard.org/membership.html', {'' : 'content'}],
		['Staff/Office','http://www.st-gerard.org/staffoffice.html', {'' : 'content'}],
		['Contact Webservant','mailto:suec@st-gerard.org', {'' : 'content'}],
		['Parish Council','http://www.st-gerard.org/parishcouncil.html', {'' : 'content'}],
		['About our Patron Saint','http://www.st-gerard.org/patronsaint.html', {'' : 'content'}],
	],
	
	['Worship','', {'tw' : 'content'},
		['Weekend &amp; Daily Mass','http://www.st-gerard.org/regularmasstimes.html', {'' : 'content'}],
		['Holy Days &amp; Holidays','http://www.st-gerard.org/holydaysandholidays.html', {'' : 'content'}],
		['Eucharistic Adoration','http://www.st-gerard.org/eucharisticadoration.html', {'' : 'content'}],
		['Reconciliation','http://www.st-gerard.org/reconciliation.html', {'' : 'content'}],
		['Anointing of the Sick','http://www.st-gerard.org/anointingofthesick.html', {'' : 'content'}],
	],

	['Bulletin', "javascript:nw2('http://www.st-gerard.org/bulletinandprayersheets.html')", {'' : 'content'}],

	['Calendar', "javascript:nw('http://www.st-gerard.org/Calendar/calendar.pdf')", {'tw':'_self'}],

	['Directions',"javascript:nw3('http://www.mapquest.com/maps/map.adp?address=9600%20Regent%20Ave%20N&city=Brooklyn%20Park&state=MN&zipcode=55443%2d1401&country=US&geodiff=1')", {'tw' : '_self'}],
	
];


function nw(url, name) {
	// see full list of options at 
	// http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/reference/methods/open_0.asp
	window.open(url,(name ? name : '_blank'),'HEIGHT=600,WIDTH=700,TOP=30,LEFT=30,scrollbars=yes');
}

function nw1(url, name) {
	// see full list of options at 
	// http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/reference/methods/open_0.asp
	window.open(url,(name ? name : '_blank'),'HEIGHT=600,WIDTH=700,TOP=30,LEFT=30,scrollbars=yes');
}

function nw2(url, name) {
	// see full list of options at 
	// http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/reference/methods/open_0.asp
	window.open(url,(name ? name : '_blank'),'HEIGHT=600,WIDTH=700,TOP=30,LEFT=30,scrollbars=yes');
}

function nw3(url, name) {
	// see full list of options at 
	// http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/reference/methods/open_0.asp
	window.open(url,(name ? name : '_blank'),'HEIGHT=600,WIDTH=600,TOP=30,LEFT=30,scrollbars=yes');
}


