// <![CDATA[
function SetDonateClick()
{
    var d = document.getElementsByClassName('Donate');

    for (i = 0; i < d.length; i++)
    {
        d[i].onmouseover = function()
        {
            this.className = 'DonateHot';
        }
        
        d[i].onmouseout = function()
        {
            this.className = 'Donate';
        }
        
        d[i].onclick = function()
	    {
	        var DonationForm = document.getElementById('DonationForm');
		    DonationForm.Product.value = this.getElementsByTagName('A')[0].getAttribute('product');
		    DonationForm.submit();
	    }
    }
}

function Void()
{
}

Event.observe(window, "load", SetDonateClick);
// ]]>
