function addThumbnailOverlay()
{
	// Add play button overlay to thumbnails
	$(".movie img").each( function(i) {
		$(this).before("<div class=\"overlay\"></div>");
	});	
}

function closeMessage()
{
	$("#message").hide();
}

function insertCloseMessageLink()
{
	document.write("<a href=\"javascript:;\" onclick=\"closeMessage();\">OK</a>");
}

function email(type)
{
	var at = String.fromCharCode(64);
	var dot = String.fromCharCode(46);
	if(type=='publisher') {
		document.write("<a href=\"mailto:publisher" + at + "clearlyhealth" + dot + "com\">");
		document.write("publisher" + at + "clearlyhealth" + dot + "com");
		document.write("</a>");
	} else {
		document.write("<a href=\"mailto:info" + at + "clearlyhealth" + dot + "com\">");
		document.write("info" + at + "clearlyhealth" + dot + "com");
		document.write("</a>");
	}
}