pages = ['collection', 'about', 'stores', 'press', 'contact', 'news', 'blog', 'facebook'];

url = document.URL;
num_pages = pages.length;
menubar_html = '';
for (n=0; n<num_pages; n++) {
	page_name = pages[n];
	page_file = page_name + '.html';
	current_page = url.match(page_file)==page_file;
	if (current_page) {
		menubar_html += '<font color="black">' + page_name + '</font>';
	} else {
		if (page_name=='blog') {
			menubar_html += '<a class="menu" href="http://louisedouglas.blogspot.com"' + '" title="' + 'blog' + '">' + page_name + '</a>';
		} else if (page_name=='facebook') {
			menubar_html += '<a class="menu" href="http://www.facebook.com/pages/Louise-Douglas-Jewellery/103665926338581"' + '" title="' + 'facebook' + '">' + page_name + '</a>';
		} else
		{
			menubar_html += '<a class="menu" href="' + page_file + '" title="' + page_file + '">' + page_name + '</a>';
		}
	}
	if (n<num_pages-1) {
		menubar_html += '&nbsp;|&nbsp;';
	}
}

document.write(menubar_html);

