/*

The Following configuration is for the marker image on this community's Map page.

*/


// ImgW and ImgH are the width and height, respectively, of the marker image, in pixels.
//
var imgW = 30;
var imgH = 30;

// ImgX is the X coordinate of the pixel you wish to center on top of the point in the map.
//
var imgX = 25;

// ImgY is the y coordinate of the pixel you wish to center on the map.
// (Counting down from the top, as standard with images)
//
var imgY = 2;

// The colour of the border around the mouse-over popup menu
// Your choice of [orange, blue, lightblue, brown, green, lightgreen, grey, black, maroon, ocre, purple]

var imgColour = 'grey';

/*
  This function must build the entire contents of the popup window and return a string.
  The following variables are optionally available:
	nodes		= number of the post (1 = most recent)
  	m_title 	= title of the post
  	m_description 	= image and summary of the post (image above summary)
	m_link		= permalink URL of post
	m_lat	 	= latitude of the post
	m_long	 	= longitude of the post
//*/

function getBody()
{
	return '<h3><a href="' + m_link + '">' + m_title + '</a></h3><hr><div class="popupbody">' + m_description + '</div><div class="popuplink"><a href="' + m_link + '">' + '[Read More]</a><div>';
}