function mailpage() {
	//	For DEV environment
	//	document.domain = "dev-forums.parenting.corp";
	// For TEST environment
	//	document.domain = "test-forums.parenting.corp";	
	// For PRODUCTION environment
	document.domain = "forums.parenting.com";
	var url = window.location.href;
	mail_str = "mailto:?subject=Thought this might interest you: " + document.title;
	mail_str += "&body=I thought you might be interested in this: " + document.title;
	mail_str += ". You can view it at " + escape(url); 
	location.href = mail_str;
}

function showSocialbookmarking() {
	document.getElementById("socialbookmark").style.zIndex = "1";
}

function hideSocialbookmarking() {
	document.getElementById("socialbookmark").style.zIndex = "-1";
}