$(document).ready(function () {
    $("#block-hasf_donation-0 h2.title").css('display', 'none');
    
    var browser = navigator.appName;
    if ( (browser == "Netscape") ) {
    	$('#table-donate-arrow-wrapper').css('margin-left', '10px');
    	//$('#table-donate-arrow-wrapper #why a').css('display', 'none');
    }
    
});


function CalculateOrder(form){
	 var radG1;
	 
	for (var i = 0; i < document.hasf_donation.os0.length; i++){
		 if(document.hasf_donation.os0[i].checked==true){
			 radG1=document.hasf_donation.os0[i].value;
			 
		 }
	}


	if(radG1 == "25")
	 { 
	 document.hasf_donation.item_name.value = "$25 to $50 Donation: One set of 2009 HASF Postcards";
	 }
	else if(radG1 == "50")
	 {
	 document.hasf_donation.item_name.value = "$51 to $100: Five sets of 2009 HASF Postcards";       
	 }
	else if(radG1 == "100")
	 {
	 document.hasf_donation.item_name.value = "$101 to $200: Five sets of 2009 HASF Postcards & 2009 HASF Poster";
	 }
	else if(radG1 == "200")
	 {;
	 document.hasf_donation.item_name.value = "$201 to $300: Five Sets of 2009 HASF Postcards & framed 2009 HASF Poster";
	 }
	else if(radG1 == "300")
	 {
	 document.hasf_donation.item_name.value = "$301 to $499: Five Sets of 2009 HASF Postcards, framed 2009 HASF Poster & HASF Ball Cap";
	 }
	else if(radG1 == "500"){
	 document.hasf_donation.item_name.value = "$500 or more: Five Sets of Postcards, framed & signed 2009 Poster, Ball Cap & framed 'Pablo's Chocolate Factory' Blotter Art"; 
	 }
	else {
		return false;
	}
	return true;
	} 