// cottage layout

function layoutMenu (root) {

var menuBar = new WebFXMenuBar;
menuBar.direction = "vertical";

menuBar.add(new WebFXMenuButton("Photos", root + "photos.htm"));
menuBar.add(new WebFXMenuButton("Amenities", root + "amenities.htm"));
menuBar.add(new WebFXMenuButton("Rates & Policies", root + "rates.htm"));
menuBar.add(new WebFXMenuButton("How To Get Here", root + "onsite/map.htm"));

layoutCommonMenu(menuBar,root);

menuBar.add(new WebFXMenuButton("Latest Newsletter",root + "onsite/newsletter.htm"));
menuBar.add(new WebFXMenuButton("<span style=\"font-weight:bold\">The Inn</span>","http://luckymud.com","Lucky Mud Bed & Breakfast"));

return menuBar.toString();

};

function logoSmallTop (root) {
	return '<img src="' + root + 'images/cottage/logo_small_top.gif">';
};

function logoSmall (root) {
	return '<img src="' + root + 'images/cottage/logo_small.jpg">';
};

function email () {
	return 'cottage@luckymud.com';
};

function news (root) {

document.write ('<div id="news" style="height:222"><div id="inner" style="height:223"><div id="head">Inn At Lucky Mud</div>' +
	'<div id="body">' +
	
	'Out of sight and down ' +
	'the hill from the cottage is our ' +
	'elegant country bed and breakfast. ' +
	'Curious? Click <a href="http://luckymud.com">here</a>.<br><br>' +
			
	'<center><a href="http://luckymud.com"><img src="' + root + 'images/cottage/fern.jpg" class="border" width=169 height=117></a></center>' +
	
	'</div></div></div>' +

	'</center></div></div></div>');
	
	document.write('<script type="text/javascript">_uacct = "UA-702902-3";urchinTracker();</script>');
};