Cancer is the #1 cause of disease death for children in the United States, yet only receives 4% of funding. But we can shift the tides by advocating for more research, more treatments, and more hope.
Sarcomas are cancers that develop from connective tissues in the body, such as muscles, fat, bones, the linings of joints, or blood vessels. There are many types of sarcomas. Rhabdomyosarcoma (RMS) is a cancer made up of cells that normally develop into skeletal muscles. The body has 3 main types of muscles.
Skeletal (voluntary) muscles are muscles that we control to move parts of our body.
Smooth muscle is the main type of muscle in internal organs (except for the heart). For example, smooth muscles in the stomach and intestines push food along as it is digested. We do not control this movement.
Cardiac muscle is the main muscle type in the heart.
');
});
});
//Is in Viewport Script
$.fn.isInViewport = function() {
var elementTop = $(this).offset().top;
var elementBottom = elementTop + $(this).outerHeight();
var viewportTop = $(window).scrollTop();
var viewportBottom = viewportTop + $(window).height();
return elementBottom > viewportTop && elementTop < viewportBottom;
};
var speed = 30;
/* Call this function with a string containing the ID name to
* the element containing the number you want to do a count animation on.*/
function incEltNbr(id) {
elt = document.getElementById(id);
endNbr = Number(document.getElementById(id).innerHTML);
incNbrRec(0, endNbr, elt);
}
/*A recursive function to increase the number.*/
function incNbrRec(i, endNbr, elt) {
if (i <= endNbr) {
elt.innerHTML = i;
setTimeout(function() {//Delay a bit before calling the function again.
incNbrRec(i + 1, endNbr, elt);
}, speed);
}
}
$(document).ready(function() {
var donpercent = $('#donationpercent').text();
$('.hero-section div.progress-bar').css('width', donpercent+'%');
});
$(window).on('resize scroll', function() {
if ($('.support-the-foundation div.progress-bar').isInViewport()) {
if ($('.support-the-foundation div.progress-bar').hasClass('viewed')) {
}
else {
var donpercent = $('#donationpercent').text();
$('.support-the-foundation div.progress-bar').css('width', donpercent+'%');
$('.support-the-foundation div.progress-bar').addClass('viewed');
}
}
if ($('#jscount1').isInViewport()) {
if ($('#jscount1').hasClass('viewed')) {
}
else {
incEltNbr('jscount1');
incEltNbr('jscount2');
incEltNbr('jscount3');
$('#jscount1').addClass('viewed');
}
}
});
$(document).ready(function() {
// Set the date we're counting down to in PST (Pacific Standard Time)
var countDownDate = new Date("September 30, 2024 10:00:00 GMT-0700").getTime();
// Update the countdown every 1 second
var x = setInterval(function() {
// Get the current date and time
var now = new Date().getTime();
// Find the distance between now and the countdown date
var distance = countDownDate - now;
// Time calculations for days, hours, minutes and seconds
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
// Display the countdown in the element with id="countdown"
$("#days").text(days);
$("#hours").text(hours);
$("#minutes").text(minutes);
$("#seconds").text(seconds);
// If the countdown is finished, write some text
if (distance < 0) {
clearInterval(x);
$("#countdown").html("EXPIRED");
}
}, 1000); // Update every 1 second
});