Jana Jaffe - Rider # 11

This year, the 20th anniversary of the
SMART Ride, will be my 7th year cycling 165 miles in the SMART Ride to put an
end to HIV and AIDS! As many of you know, The SMART Ride (Southern Most
AIDS/HIV Ride) is very special to me. My 1st ride was in 2017 after I began
this part of my career at Broward House, Inc., one of the benefitting HIV/AIDS
organizations of the SMART Ride. And in 2018, at the end of the 165 miles, I
proposed to my partner, Julia.
I came out in the late 80’s and experienced the AIDS epidemic which
affected so many of our brothers, uncles, cousins, sons, fathers, and friends.
I lost some wonderful people. WE ALL lost some wonderful human beings. If they
were still around, our lives would be so much richer. I love this ride/fundraiser because 100% of every dollar I raise will be
shared with 6 AIDS Service organizations around Florida, and specifically,
Broward House, Inc. 100% of all rider donations will be donated to the
organization and used for client services. Not a penny will go to salaries or
anything other than client care. Very few organizations can boast that they
have this guarantee, in fact, it is unheard of in an event like this.
On Friday November 17th, and Saturday
November 18th I will join hundreds of other
individuals who will ride their bicycles or crew from Miami to Key West
165-miles. Our journey will be one filled with hope, with memories, with pride,
and with the dream of a future free of AIDS.
I have set an ambitious goal to help raise $2
Million this year, I personally want to raise $5,000 because
I believe what we do makes a difference. Did you know that those being
infected at the highest rate are ages 13-23, not a typo! I want to see a world free of HIV and AIDS, in my lifetime. I will just have to find another excuse to cycle!
:)
I hope you will consider joining me on this
journey and make a generous donation.
Thank you for supporting
me and being a part of the change!
With Much Love and
Gratitude,
Jana
var nVisaCardType = 0; var nMastercardCardType = 1; var nDiscoverCardType = 2; var nAmexCardType = 3; var nDinersClubCardType = 4; var nCarteBlancheCardType = 5; var nEnRouteCardType = 6; var nJCBCardType = 7; var nUnknownCardType = 8; var cardPics = new Array(); cardPics[nVisaCardType] = new Image(); cardPics[nVisaCardType].src="/8/pledge/images/cards/visa.jpg"; cardPics[nMastercardCardType] = new Image(); cardPics[nMastercardCardType].src="/8/pledge/images/cards/mastercard.jpg"; cardPics[nDiscoverCardType] = new Image(); cardPics[nDiscoverCardType].src="/8/pledge/images/cards/discover.jpg"; cardPics[nAmexCardType] = new Image(); cardPics[nAmexCardType].src="/8/pledge/images/cards/amex.jpg"; cardPics[nDinersClubCardType] = new Image(); cardPics[nDinersClubCardType].src="/8/pledge/images/cards/dinersclub.jpg"; cardPics[nCarteBlancheCardType] = new Image(); cardPics[nCarteBlancheCardType].src="/8/pledge/images/cards/carteblanche.jpg"; cardPics[nEnRouteCardType] = new Image(); cardPics[nEnRouteCardType].src="/8/pledge/images/cards/enroute.jpg"; cardPics[nJCBCardType] = new Image(); cardPics[nJCBCardType].src="/8/pledge/images/cards/jcb.jpg"; cardPics[nUnknownCardType] = new Image(); cardPics[nUnknownCardType].src="/8/pledge/images/cards/invalid.gif"; // // Algorithm to verify a credit number is valid // function checkLuhn10(number) { if (number.length > 19) return (false); sum = 0; mul = 1; l = number.length; for (i = 0; i < l; i++) { digit = number.substring(l-i-1,l-i); tproduct = parseInt(digit ,10)*mul; if (tproduct >= 10) sum += (tproduct % 10) + 1; else sum += tproduct; if (mul == 1) mul++; else mul--; } if ((sum % 10) == 0) return (true); else return (false); } // // Determine the credit card type from the credit card number // function getCardType(number) { var numLength = number.length; if(numLength > 4) { if((number.charAt(0) == '4') && ((numLength == 14)||(numLength==16))) return(cardPics[nVisaCardType].src); else if((number.charAt(0) == '5' && ((number.charAt(1) >= '1') && (number.charAt(1) <= '5'))) && (numLength==16)) return(cardPics[nMastercardCardType].src); else if(number.substring(0,4) == "6011" && (numLength==16)) return(cardPics[nDiscoverCardType].src); else if((number.charAt(0) == '3' && ((number.charAt(1) == '4') || (number.charAt(1) == '7'))) && (numLength==15)) return(cardPics[nAmexCardType].src); else if((number.charAt(0) == '3') && (numLength==16)) return(cardPics[nJCBCardType].src); else if(((number.substring(0, 4) == "2141") || (number.substring(0, 4) == "1800")) && (numLength==15)) return(cardPics[nJCBCardType].src); else if(((number.substring(0, 4) == "2014") || (number.substring(0, 4) == "2149")) && (numLength==15)) return(cardPics[nEnRouteCardType].src); else if((number.charAt(0) == '3') && (number.charAt(1) == '8') && (numLength == 14)) return(cardPics[nCarteBlancheCardType].src); else if((number.charAt(0) == '3') && (((number.charAt(1) == '0') && ((number.charAt(2) >= '0') && (number.charAt(2) <= '5'))) || (number.charAt(1) == '7')) && (numLength == 14)) return(cardPics[nDinersClubCardType].src); } return(cardPics[nUnknownCardType].src); } function handleCCTyping (field, event) { var keyCode = event.keyCode ? event.keyCode : event.which ? event.which : event.charCode; if (field.card_num.value.length >= 14) { if(!checkLuhn10(field.card_num.value)) { field.cardimage.src=cardPics[nUnknownCardType].src; } else { field.cardimage.src=getCardType(field.card_num.value); } } else { field.cardimage.src=cardPics[nUnknownCardType].src; } //alert(field.cardimage.src); return true; } function copyAddress() { if(document.form1.sInfo.checked == true ) { document.form1.shipping_first_name.value = document.form1.first_name.value ; document.form1.shipping_last_name.value = document.form1.last_name.value ; document.form1.shipping_address.value = document.form1.address.value ; document.form1.shipping_city.value = document.form1.city.value ; document.form1.shipping_zip.value = document.form1.zip.value ; document.form1.shipping_state.value = document.form1.state.value ; document.form1.shipping_state.selectedIndex = document.form1.shipping_state.selectedIndex; document.form1.shipping_country.value = document.form1.country.value ; document.form1.shipping_country.selectedIndex = document.form1.country.selectedIndex; } } function validateDonation() { if (document.getElementById('amount').value=='') { alert('You must enter a donation amount.'); return false; } //document.getElementById('amount').value..replace(/[A-Za-z$-]/g, ""); if (document.getElementById('first_name').value=='') { alert('You must enter a first name.'); return false; } if (document.getElementById('last_name').value=='') { alert('You must enter a last name.'); return false; } if (document.getElementById('card_num').value=='') { alert('You must enter a credit card number.'); return false; } if (document.getElementById('amount_fee').checked) { if (confirm('Please confirm you wish to pledge \r\n $'+document.getElementById('amount').value+' to Jana Jaffe and \r\n cover the credit card fee of $'+document.getElementById('amount_fee').value+'?')) { document.getElementById('pledgeSubmitBtn').style.display='none'; return true; } else { return false; } } else { if (confirm('Please confirm you wish to pledge \r\n $'+document.getElementById('amount').value+' to Jana Jaffe?')) { document.getElementById('pledgeSubmitBtn').style.display='none'; return true; } else { return false; } } }