function Link_onMouseEnter(sender, mouseEventArgs)
{
    var enter = sender.findName(sender.name+"_Over");
	        var normal = sender.findName(sender.name+"_Normal");
	        enter.Opacity = 1;
	        normal.Opacity = 0;
}

function Link_onMouseLeave(sender, mouseEventArgs)
{
    var enter = sender.findName(sender.name+"_Over");
	        var normal = sender.findName(sender.name+"_Normal");
	        enter.Opacity = 0;
	        normal.Opacity = 1;
}


function DownloadLinkMore(sender, mouseEventArgs)
{
		   /*submit variable to webtrends*/
            dcsMultiTrack("DCS.dcssip", "www.microsoft.com", "DCS.dcsuri", "/forefront/clientsecurity/en/us/default.aspx", "WT.heroButtonClick", "DownloadTrial");

            window.location.href = "/spain/forefront/download.aspx";

}

function WhitePaperLinkMore(sender, mouseEventArgs)
{
	/*submit variable to webtrends*/
	dcsMultiTrack("DCS.dcssip", "www.microsoft.com", "DCS.dcsuri", "/forefront/clientsecurity/en/us/default.aspx", "WT.heroButtonClick", "LearnMore");
 
    window.location.href = "/spain/forefront/prodinfo.aspx";

}

function CaseStudiesLinkMore(sender, mouseEventArgs)
{
	/*submit variable to webtrends*/
	dcsMultiTrack("DCS.dcssip", "www.microsoft.com", "DCS.dcsuri", "/forefront/clientsecurity/en/us/default.aspx", "WT.heroButtonClick", "TryIt");

    window.location.href = "/spain/forefront/datasheet.aspx";
}
