function contactLinks()
{
	allDivs = document.getElementsByTagName('div');
	for(i=0; i < allDivs.length; i++)
	{
		divElement = allDivs[i];
		divId = divElement.id;
		if(divId == "contactEmail")
		{
			divElement.onclick = function () { location.href='mailto:sunnysidealtmed@gmail.com'; }
		}
		if(divId == "contactFacebook")
		{
			divElement.onclick = function () { location.href="http://www.facebook.com/SunnySideAlternativeMedicine?ref=profile"; }
		}
		if(divId == "contactTwitter")
		{
			divElement.onclick = function () { location.href="http://twitter.com/SunnySideMed"; }
		}
	}
}
