﻿// Amulet Partners Web Site Javascript File

//Functions to give dynamic underlines to hyperlinks
ShowUnderline = function(myobject) { myobject.style.textDecorationUnderline = true; }
HideUnderline = function(myobject) { myobject.style.textDecorationUnderline = false; }


function onLoad()
    	{
    		//	Set today's date in the News section
    		var today = new Date();
    		var todayText = today.getDate().toString() + "/" + (today.getMonth() + 1).toString() + "/" + today.getYear().toString() + " - ";
    		if (document.getElementById("datetoday"))
    		{
    			document.getElementById("datetoday").innerText = todayText;
    		}
    	}

