'); if(!WVM.IS_STREAMING){ $videoEl.append('' + '' + ''); } setTimeout(function(){ $('.mute-overlay').on('touchstart click', function(e){ if(e.handled === false) return; e.stopPropagation(); e.preventDefault(); e.handled = true; player.muted(false); //console.log("volumee " + WVM.activePlayer.volume()); $(this).hide(); $(this).css('display', 'none'); var currentTime = player.currentTime(); if(currentTime 0){ if(deviceName == 'desktop'){ WVM.VIDEO_TOP = $('#media-container-' + videoId).offset().top; }else{ WVM.VIDEO_TOP = $('#media-container-' + videoId).offset().top - $('.next-dropdown-accordion').height(); } if(deviceName == 'desktop'){ WVM.VIDEO_HEIGHT = $('#html5-video-' + videoId).outerHeight(); }else{ WVM.VIDEO_HEIGHT = $('#html5-video-' + videoId).outerHeight(); } WVM.CONTAINER_HEIGHT = $('#media-container-' + videoId).height(); //console.log("container height: " + WVM.CONTAINER_HEIGHT); $(window).on( "resize", function() { if(deviceName == 'desktop'){ WVM.VIDEO_TOP = $('#media-container-' + videoId).offset().top; }else{ WVM.VIDEO_TOP = $('#media-container-' + videoId).offset().top - $('.next-dropdown-accordion').height(); } if(deviceName == 'desktop'){ WVM.VIDEO_HEIGHT = $('#html5-video-' + videoId).outerHeight(); }else{ WVM.VIDEO_HEIGHT = $('#html5-video-' + videoId).outerHeight(); } WVM.CONTAINER_HEIGHT = $('#media-container-' + videoId).height(); console.log("container height: " + WVM.CONTAINER_HEIGHT); }); //console.log("VIDEOTOP: " + WVM.VIDEO_TOP); //console.log("VIDEOHEIGHT: " + WVM.VIDEO_HEIGHT); $(window).on( "scroll", function() { if(!WVM.IS_FLOATING){ if(deviceName == 'desktop'){ WVM.CONTAINER_HEIGHT = $('#media-container-' + videoId).height(); }else{ WVM.CONTAINER_HEIGHT = $('#media-container-' + videoId + " .hlsvideo-wrapper").height() + $('#media-container-' + videoId + " .now-playing-container").height(); } } //var top = $('#media-container-' + videoId).offset().top; var offset = WVM.VIDEO_TOP + (WVM.VIDEO_HEIGHT / 2); var offsetBack = WVM.VIDEO_TOP; var changed = false; //console.log("VIDEOTOP: " + WVM.VIDEO_TOP); //console.log("VIDEOHEIGHT: " + WVM.VIDEO_HEIGHT); //console.log("scrolltop " + $(window).scrollTop()); //only float if playing var isPlaying = WVM['player_state' + videoId]['IS_PLAYING'] || WVM['player_state' + videoId]['AD_IS_PLAYING']; if(isPlaying){ $('.vjs-loading-spinner').hide(); } var offsetFloatAd = 99999999; if(deviceName == 'desktop' && $('#float_anchor').length > 0){ offsetFloatAd = $('#float_anchor').offset().top - WVM.VIDEO_HEIGHT; //console.log("float anchor offset top " + offsetFloatAd); } if($(window).scrollTop() > offset && isPlaying && !WVM['player_state' + videoId]['CANCEL_FLOATING']){ $('#media-placeholder-' + videoId).height(WVM.CONTAINER_HEIGHT); $('#media-placeholder-' + videoId).css('display', 'block'); if(!WVM.IS_FLOATING){ changed = true; } WVM.IS_FLOATING = true; $('#media-container-' + videoId).addClass('floating-video'); var sWidth = window.innerWidth || document.documentElement.clientWidth; var sHeight = window.innerHeight || document.documentElement.clientHeight; if(sWidth > 900 && WADS.IS_STICKING){ $('#media-container-' + videoId).addClass('desktop-ad-is-sticky'); } else if(WADS.IS_STICKING){ if(!TOP_AD_VIEWED){ $('#media-container-' + videoId).addClass('mobile-ad-is-sticky'); }else{ $('#media-container-' + videoId).addClass('mobile-ad-is-sticky-noad'); } } else if(!WADS.IS_STICKING){ if(!TOP_AD_VIEWED){ $('#media-container-' + videoId).removeClass('desktop-ad-is-sticky'); }else{ $('#media-container-' + videoId).addClass('desktop-ad-is-sticky-noad'); } } //set right var sWidth = window.innerWidth || document.documentElement.clientWidth; var sHeight = window.innerHeight || document.documentElement.clientHeight; if(deviceName == 'desktop' || sWidth > 900){ var leftPos2 = $('aside').get(0).getBoundingClientRect().left; var leftPos = $('aside').offset().left ; $('#media-container-' + videoId).css('left', leftPos + "px"); var newWidth = Math.floor(sWidth / 3.5); $('#media-container-' + videoId).css('width', newWidth + "px"); } else{ $('#media-container-' + videoId).css('width', "100% !important"); $('#media-container-' + videoId + ' .now-playing-container').css('display', 'block'); $('#media-container-' + videoId + ' .next-dropdown-accordion').css('display', 'block'); } //floating-video $('#media-container-' + videoId + " " + '.page-carousel-wrapper').hide(); setTimeout(function(){ var hWrapper = $('.floating-video .hlsvideo-wrapper').height(); var npWidth = $('.floating-video .now-playing-container').height(); var ndWidth = $('.floating-video .next-dropdown-header').height() + 20; var scrollerHeight = sHeight - (hWrapper + npWidth + ndWidth); scrollerHeight = 180; //scrollerHeight = parseInt(scrollerHeight * 0.5); if(WVM.device_name == 'desktop'){ $('#media-container-' + videoId + " " + " .mobile-list-videos").height(scrollerHeight); } }, 100); }else if($(window).scrollTop() 0){ var container = document.querySelector('#page-carousel-' + fullVideoId); imagesLoaded( container, function() { var screenWidth = window.innerWidth || document.documentElement.clientWidth; if(screenWidth > 850){ WVM.IS_DESKTOP = true; $('#page-carousel-' + fullVideoId + ' .page-carousel-lg-slides').css('display', 'block'); WVM['player_settings' + fullVideoId].slider = $('#page-carousel-' + fullVideoId).bxSlider({ maxSlides: 4, minSlides: 4, slideWidth: 305, infiniteLoop: false, hideControlOnEnd: true, useCSS: true, pager: false, slideMargin: 15, moveSlides: 1, nextText: '', prevText: '' }); }else{ WVM.IS_DESKTOP = false; $('.page-carousel-wrapper').css('display', 'block'); } }); } }; WVM.setupToggleButton = function(fullVideoId, player){ if($('.nextplay-switch-' + fullVideoId).length > 0){ new DG.OnOffSwitchAuto({ cls:'.nextplay-switch-' + fullVideoId, height: 24, trackColorOn:'#F9F9F9', trackColorOff:'#222', textColorOn: '#222', textColorOff: '#222', textOn:'On', textOff:'Off', listener:function(name, checked){ var theVal = 1; if(!checked){ theVal = 0; } $.ajax({ url: '/ajax/update_autoplay_video/', data: { autoplay_on: theVal }, type: 'POST', dataType: 'json', success: function(data) { WVM['player_settings' + fullVideoId]['autoplay'] = checked; }, error : function(){ console.log("Error loading video"); } }); } }); } }; WVM.setupAccordionButton = function(fullVideoId){ var deviceName = 'desktop'; $('#next-dropdown-accordion-button-' + fullVideoId).on('click', function(){ if($(this).find('i').hasClass('fa-chevron-up')){ //hide $(this).find('i').removeClass('fa-chevron-up'); $(this).find('i').addClass('fa-chevron-down'); if(deviceName == "desktop" && !$('#media-container-' + fullVideoId).hasClass('floating-video')){ $('#media-container-' + fullVideoId + " " + '.page-carousel-wrapper').slideUp(); $('#media-container-' + fullVideoId + " " + '.mobile-list-wrapper').hide(); }else{ $('#media-container-' + fullVideoId + " " + '.mobile-list-wrapper').slideUp(); $('#media-container-' + fullVideoId + " " + '.page-carousel-wrapper').hide(); } var currVideoId = WVM['player_state' + fullVideoId]['VIDEO_ID']; var nextVideoId = WVM.getNextPlaylistIndex(currVideoId); //playerId, mediaId, fieldName var myTitle = WVM.getPlaylistData(fullVideoId, nextVideoId, 'noprefixtitle'); //alert("Getting title " + myTitle); $('#video-slider-nexttitle' + fullVideoId).css('display', 'inline'); $('#video-slider-nexttitle' + fullVideoId).html(myTitle); }else{ //expand $(this).find('i').addClass('fa-chevron-up'); $(this).find('i').removeClass('fa-chevron-down'); $('#media-container-' + fullVideoId + " " + '.mobile-list-wrapper').css('display', 'block'); if(deviceName == "desktop" && !$('#media-container-' + fullVideoId).hasClass('floating-video')){ $('#media-container-' + fullVideoId + " " + '.page-carousel-wrapper').css('display', 'block'); $('#media-container-' + fullVideoId + " " + '.page-carousel-wrapper').slideDown(); $('#media-container-' + fullVideoId + " " + '.mobile-list-wrapper').hide(); if(!WVM.player_state155200['CAROUSEL_INIT']){ WVM.setupCarousel(fullVideoId); } }else{ $('#media-container-' + fullVideoId + " " + '.mobile-list-wrapper').slideDown(); $('#media-container-' + fullVideoId + " " + '.page-carousel-wrapper').hide(); if(!$('#media-container-' + fullVideoId).hasClass('floating-video')){ if(!WVM.player_state155200['CAROUSEL_INIT']){ WVM.setupCarousel(fullVideoId); } } } $('#video-slider-nexttitle' + fullVideoId).css('display', 'none'); } }); var currVideoId = WVM['player_state' + fullVideoId]['VIDEO_ID']; //console.log("current Video " + currVideoId); var nextVideoId = WVM.getNextPlaylistIndex(currVideoId); var myTitle = WVM.getPlaylistData(fullVideoId, nextVideoId, 'noprefixtitle'); //console.log("setting title " + myTitle); $('#video-slider-nexttitle' + fullVideoId).css('display', 'inline'); $('#video-slider-nexttitle' + fullVideoId).html(myTitle); }; WVM.sendbeacon = function(action, nonInteraction, value, eventLabel) { var eventCategory = 'Video'; if (window.ga) { //console.log("sending action: " + action + " val: " + value + " label " + eventLabel); ga('send', 'event', { 'eventCategory': eventCategory, 'eventAction': action, 'eventLabel': eventLabel, 'eventValue': value, 'nonInteraction': nonInteraction }); } }; WVM.getNextPlaylistIndex = function(mediaId, returnArrayIndex){ var currId = null; if(mediaId == null){ return null; } for(var x =0; x 20){ if(fullDuration > 1 && ((fullDuration - fullCurrent) > 1) && !$('.vjs-loading-spinner').hasClass('badspinner')){ console.log("hiding spinner"); $('.vjs-loading-spinner').addClass('badspinner'); } } var duration_time = Math.floor(this.duration()); //this is a hack because the end video event is not firing... var current_time = Math.floor(this.currentTime()); if ( current_time > 0 && ( fullCurrent >= (fullDuration - 10) )){ var currId = playerState.VIDEO_ID; var newMediaId = WVM.getNextPlaylistIndex(currId); //if(playerSettings.autoplay_next && newMediaId){ if(newMediaId){ if('desktop' == "iphone" && playerState.AD_ERROR){ console.log("skipped timeupdate end"); }else{ WVM.load_video(newMediaId, true, playerState.ORIGINAL_ID); } } } if(!playerState.START_SENT){ WVM.sendbeacon('start', true, playerState.VIDEO_ID, playerState.VIDEO_TITLE); playerState.START_SENT = true; } var currentTime, duration, percent, percentPlayed, _i; currentTime = Math.round(this.currentTime()); duration = Math.round(this.duration()); percentPlayed = Math.round(currentTime / duration * 100); for (percent = _i = 0; _i = percent && __indexOf.call(playerState['PERCENTS_TRACKED'], percent) 0) { playerState['PERCENTS_TRACKED'].push(percent); } } } }); //player.off('ended'); player.on('ended', function(){ console.log("ended"); playerState.IS_PLAYING = false; WVM.sendbeacon("complete", true, playerState.VIDEO_ID, playerState.VIDEO_TITLE); var currId = playerState.VIDEO_ID; var newMediaId = WVM.getNextPlaylistIndex(currId); //if(playerSettings.autoplay_next && newMediaId){ if(newMediaId){ WVM.load_video(newMediaId, true, playerState.ORIGINAL_ID); }else{ console.log("Playlist complete (no more videos)"); } }); //player.off('adserror'); player.on('adserror', function(e){ //$('#ima-ad-container').remove(); WVM.lastAdRequest = new Date().getTime() / 1000; console.log(e); console.log("ads error"); var errMessage = e['data']['AdError']['l']; playerState.AD_IS_PLAYING = false; playerState.IS_PLAYING = false; // && errMessage == 'The VAST response document is empty.' if(!playerState.AD_ERROR){ var dTime = new Date().getTime(); WVM.firstPrerollTagUrl = WVM.getFirstPrerollUrl(); console.log("calling backup ad tag url: " + WVM.firstPrerollTagUrl); WVM.activePlayer.ima.changeAdTag(WVM.firstPrerollTagUrl + "?" + dTime); WVM.activePlayer.ima.requestAds(); //WVM.activePlayer.src({ // src: masterSrc, // type: 'video/mp4' //}); //WVM.firstPrerollTagUrl = ""; } playerState.AD_ERROR = true; }); //player.off('error'); player.on('error', function(event) { if (player.error().code === 4) { player.error(null); // clear out the old error player.options().sources.shift(); // drop the highest precedence source console.log("now doing src"); console.log(player.options().sources[0]); player.src(player.options().sources[0]); // retry return; } }); //player.off('volumechange'); player.on('volumechange', function(event) { console.log(event); var theHeight = $('#media-container-' + playerState.ORIGINAL_ID + ' .vjs-volume-level').css('height'); var cssVolume = 0; if(theHeight){ cssVolume = parseInt(theHeight.replace('%', '')); } var theVolume = player.volume(); if(theVolume > 0.0 || cssVolume > 0){ $('#media-container-' + playerState.ORIGINAL_ID + ' .mute-overlay').css('display', 'none'); }else{ $('#media-container-' + playerState.ORIGINAL_ID + ' .mute-overlay').css('display', 'block'); } }); WVM.reinitRawEvents(playerState.ORIGINAL_ID); setInterval(function(){ WVM.reinitRawEvents(playerState.ORIGINAL_ID); }, 2000); } if(!WVM.rawCompleteEvent){ WVM.rawCompleteEvent = function(e){ var playerState = WVM['player_state155200']; console.log("firing raw event due to all other events failing"); var currId = playerState.VIDEO_ID; var newMediaId = WVM.getNextPlaylistIndex(currId); //if(playerSettings.autoplay_next && newMediaId){ if(newMediaId){ WVM.load_video(newMediaId, true, playerState.ORIGINAL_ID); } }; } if(!WVM.rawTimeupdateEvent){ WVM.rawTimeupdateEvent = function(e){ var playerState = WVM['player_state155200']; var rawVideoElem = document.getElementById('html5-video-' + playerState['ORIGINAL_ID'] + '_html5_api'); var fullCurrent = rawVideoElem.currentTime * 1000; var fullDuration = rawVideoElem.duration * 1000; var current_time = Math.floor(rawVideoElem.currentTime); console.log("raw timeupdate: " + fullCurrent + " out of " + fullDuration); if ( current_time > 0 && ( fullCurrent >= (fullDuration - 50) )){ var currId = playerState.VIDEO_ID; var newMediaId = WVM.getNextPlaylistIndex(currId); if(newMediaId){ console.log("loading new video from rawtimeupdate"); WVM.load_video(newMediaId, true, playerState.ORIGINAL_ID); } } if(!$('.vjs-loading-spinner').hasClass('badspinner')){ $('.vjs-loading-spinner').addClass('badspinner') } }; } WVM.reinitRawEvents = function(playerId){ var playerState = WVM['player_state' + playerId]; var rawVideoElem = document.getElementById('html5-video-' + WVM['player_state' + playerId]['ORIGINAL_ID'] + '_html5_api'); //COMPLETE EENT if( WVM['player_state' + playerId].COMPLETE_EVENT){ rawVideoElem.removeEventListener('ended', WVM.rawCompleteEvent, false); } rawVideoElem.addEventListener('ended', WVM.rawCompleteEvent, false); //TIME UPDATE EVENT if( WVM['player_state' + playerId].TIMEUPDATE_EVENT){ rawVideoElem.removeEventListener('ended', WVM.rawTimeupdateEvent, false); } rawVideoElem.addEventListener('ended', WVM.rawTimeupdateEvent, false); WVM['player_state' + playerId].COMPLETE_EVENT = true; WVM['player_state' + playerId].TIMEUPDATE_EVENT = true; };
MILWAUKEE (CBS 58) -- A federally published study shows a high level of physical activity is linked with improved vaccine responses in older adults, so could what we eat and how we exercise help improve how our immunity responds to the COVID-19 vaccine?
Experts say its no secret that exercise improves immune function, and they say you dont have to do too much to reap the benefits.
The concept essentially is to simply get your heart rate up higher than if you were sitting down, so that can simply be a brisk walk, says Nicole Kerneen, a registered and certified dietitian and personal trainer at Way of Life Nutrition and Fitness.
Registered dietitians say your immune system will see a boost with consistent light exercise. If you dont exercise regularly but do decide to prior to getting a vaccine, Kerneen says there are still some benefits.
Youll have a lot more circulation happening, you also have all of the immune receptors really alert, and so that in turn can essentially help, she adds.
Experts say some sort of upper body movement after getting a vaccine isnt a bad idea either.
Post-vaccination, if youre able to and feeling well enough of course, without stressing the body too much, engage in some light activity. That can actually promote circulation which can support our immune systems response said Cassie Vanderwall, a clinical nutritionist at UW Health.
As simple as with no weight at all and youre just moving your arm up and down, youre stretching it and allowing it to move, Kerneen adds.
Vanderwall says certain foods can also cause inflammation, which affects immune response.
High sugary processed foods, those are pro-inflammatory, meaning theyre going to light the fire, were actually looking for foods that are going to put out or calm down the fire, she says.
Kerneen says when it comes to improving immunity with food, consistency is key, but eating something unhealthy every once in a while is still okay. Dieticians suggest foods like leafy green vegetables, berries, citrus, garlic and onions.
Those things are incredible for your body and for your immune system and to decrease inflammation, says Kerneen.
Salmon or walnuts, nuts and seeds. A meal composed of those items post-vaccine, pre-vaccine or every day is really going to help, Vanderwall said.
On top of diet and exercise, experts say good rest and hydration can also provide good circulation before and after you get a COVID-19 vaccine.
See the rest here:
Experts say healthy diet and light exercise may boost immune response to the COVID-19 vaccine - WDJT
- 001 Cells of the Immune System - Video [Last Updated On: October 18th, 2011] [Originally Added On: October 18th, 2011]
- 002 Can immune cells from healthy people pulverize cancer? [Last Updated On: February 4th, 2012] [Originally Added On: February 4th, 2012]
- 003 Seg_2 - Suhaasini: Immune System Boosters - 21 Feb - Suvarnanews - Video [Last Updated On: February 22nd, 2012] [Originally Added On: February 22nd, 2012]
- 004 Seg_1 - Suhaasini: Immune System Boosters - 21 Feb - Suvarnanews - Video [Last Updated On: February 22nd, 2012] [Originally Added On: February 22nd, 2012]
- 005 Researchers Find Sarcoma Tumor Immune Response With Combination Therapy [Last Updated On: March 1st, 2012] [Originally Added On: March 1st, 2012]
- 006 Transplant Procedure Creates 'Hybrid' Immune System to Combat Rejection [Last Updated On: March 8th, 2012] [Originally Added On: March 8th, 2012]
- 007 Radiation Blast May Turbocharge Bristol-Myers Melanoma Drug, Report Shows [Last Updated On: March 8th, 2012] [Originally Added On: March 8th, 2012]
- 008 Vaccination strategy may hold key to ridding HIV infection from immune system [Last Updated On: March 9th, 2012] [Originally Added On: March 9th, 2012]
- 009 Stem cell treatment tricks immune system into accepting donor organs, study shows [Last Updated On: March 9th, 2012] [Originally Added On: March 9th, 2012]
- 010 Bite-Sized Biochemistry #53 - Immune System [Last Updated On: March 9th, 2012] [Originally Added On: March 9th, 2012]
- 011 Progress, no big breakthrough, in hunt for HIV cure [Last Updated On: March 12th, 2012] [Originally Added On: March 12th, 2012]
- 012 Could the immune system help recovery from stroke? [Last Updated On: March 14th, 2012] [Originally Added On: March 14th, 2012]
- 013 'Personalized immune' mouse offers new tool for studying autoimmune diseases [Last Updated On: March 15th, 2012] [Originally Added On: March 15th, 2012]
- 014 "Personalized Immune" Mouse Offers New Tool for Studying Autoimmune Diseases Model May Allow Development of ... [Last Updated On: March 15th, 2012] [Originally Added On: March 15th, 2012]
- 015 Peoples' immune systems can now be duplicated in mice [Last Updated On: March 17th, 2012] [Originally Added On: March 17th, 2012]
- 016 Immune Role in Brain Disorder? [Last Updated On: March 19th, 2012] [Originally Added On: March 19th, 2012]
- 017 Kidney Transplant Patients Seek Life Without Immune-Suppressing Drugs [Last Updated On: March 20th, 2012] [Originally Added On: March 20th, 2012]
- 018 A Chimeric Immune System: Fixing the Problem With Organ Transplant [Last Updated On: March 20th, 2012] [Originally Added On: March 20th, 2012]
- 019 Key to immune system disease could lie inside the cheek [Last Updated On: March 21st, 2012] [Originally Added On: March 21st, 2012]
- 020 Powerful new cells cloned: Key to immune system disease could lie inside the cheek [Last Updated On: March 23rd, 2012] [Originally Added On: March 23rd, 2012]
- 021 Powerful cheek cells offer promise for combating immune system diseases [Last Updated On: March 23rd, 2012] [Originally Added On: March 23rd, 2012]
- 022 Cancer research targets a key cell protein [Last Updated On: March 27th, 2012] [Originally Added On: March 27th, 2012]
- 023 Your Gut Is Good For You: Benevolent Belly Fat Modulates Immune System, Helps Repair Tissue Damage [Last Updated On: June 7th, 2012] [Originally Added On: June 7th, 2012]
- 024 Trudeau Institute announces $9 Million Translational Research Award [Last Updated On: June 14th, 2012] [Originally Added On: June 14th, 2012]
- 025 Immune system molecule weaves cobweb-like nanonets to snag Salmonella, other intestinal microbes [Last Updated On: June 21st, 2012] [Originally Added On: June 21st, 2012]
- 026 Immune Design Corp. Announces Appointment of Dr. Roger Perlmutter as a Member of Its Board of Directors [Last Updated On: June 26th, 2012] [Originally Added On: June 26th, 2012]
- 027 Hope for Leukemia and Myelodysplasia Patients from Rabbits' Antibodies [Last Updated On: July 8th, 2012] [Originally Added On: July 8th, 2012]
- 028 Mix of Immune Cells Detects Cancer [Last Updated On: July 16th, 2012] [Originally Added On: July 16th, 2012]
- 029 New evidence links immune irregularities to autism, mouse study suggests [Last Updated On: July 18th, 2012] [Originally Added On: July 18th, 2012]
- 030 Mouse with human immune system may revolutionize HIV vaccine research [Last Updated On: July 19th, 2012] [Originally Added On: July 19th, 2012]
- 031 New Clinical Trial Seeks to Cure Advanced Crohn's Disease by Replacing a Diseased Immune System with a Healthy One [Last Updated On: July 24th, 2012] [Originally Added On: July 24th, 2012]
- 032 Clinical trial seeks to cure advanced Crohn's disease using bone marrow transplant [Last Updated On: July 24th, 2012] [Originally Added On: July 24th, 2012]
- 033 Replacing Diseased Immune System With A Healthy One To Cure Chrohn's Disease [Last Updated On: July 26th, 2012] [Originally Added On: July 26th, 2012]
- 034 Dormant HIV gets rude awakening [Last Updated On: July 28th, 2012] [Originally Added On: July 28th, 2012]
- 035 Cancer Drug Unmasks HIV in Immune Cells [Last Updated On: July 28th, 2012] [Originally Added On: July 28th, 2012]
- 036 Unexpected variation in immune genes poses difficulties for transplantation [Last Updated On: August 3rd, 2012] [Originally Added On: August 3rd, 2012]
- 037 UCLA Researchers Discover "Missing Link" Between Stem Cells and the Immune System [Last Updated On: September 1st, 2012] [Originally Added On: September 1st, 2012]
- 038 'Missing link' between stem cells and the immune system [Last Updated On: September 2nd, 2012] [Originally Added On: September 2nd, 2012]
- 039 UCLA researchers discover missing link between stem cells and immune system [Last Updated On: September 2nd, 2012] [Originally Added On: September 2nd, 2012]
- 040 'Missing link' ties blood stem cells, immune system [Last Updated On: September 6th, 2012] [Originally Added On: September 6th, 2012]
- 041 Stem Cells & Immune System: "Missing Link" Found [Last Updated On: September 7th, 2012] [Originally Added On: September 7th, 2012]
- 042 Immune system molecule affects our weight [Last Updated On: September 24th, 2012] [Originally Added On: September 24th, 2012]
- 043 Immune system harnessed to improve stem cell transplant outcomes [Last Updated On: October 2nd, 2012] [Originally Added On: October 2nd, 2012]
- 044 Researchers harness the immune system to improve stem cell transplant outcomes [Last Updated On: October 2nd, 2012] [Originally Added On: October 2nd, 2012]
- 045 Vaccine to treat cervical cancer shows early promise [Last Updated On: October 11th, 2012] [Originally Added On: October 11th, 2012]
- 046 Technique shields immune system from chemo effects [Last Updated On: November 1st, 2012] [Originally Added On: November 1st, 2012]
- 047 Immunice Recommendations - Video [Last Updated On: November 9th, 2012] [Originally Added On: November 9th, 2012]
- 048 Caiden's Story - A 4-year-old's epic battle - Video [Last Updated On: November 27th, 2012] [Originally Added On: November 27th, 2012]
- 049 SU2C-CRI Cancer Immunology Translational Research Dream Team - Video [Last Updated On: December 12th, 2012] [Originally Added On: December 12th, 2012]
- 050 Immunotherapy Boosting the immune system to fight cancer - Video [Last Updated On: December 19th, 2012] [Originally Added On: December 19th, 2012]
- 051 Microgravity Affects The Immune System - The Daily Orbit - Video [Last Updated On: April 29th, 2013] [Originally Added On: April 29th, 2013]
- 052 Embryonic Stem Cells Generate Immune System - Video [Last Updated On: May 21st, 2013] [Originally Added On: May 21st, 2013]
- 053 Repairing a Damaged Immune System - Video [Last Updated On: June 28th, 2013] [Originally Added On: June 28th, 2013]
- 054 Stem Cells and the Immune System - Anastasia Filomeno - Video [Last Updated On: October 11th, 2013] [Originally Added On: October 11th, 2013]
- 055 3 - day fast might reboot your immune system - Video [Last Updated On: June 23rd, 2014] [Originally Added On: June 23rd, 2014]
- 056 WHD Murings Apak Apak Magnetic Healing Mat ( The Immune System & Stem Cell Activator ) - Video [Last Updated On: October 11th, 2014] [Originally Added On: October 11th, 2014]
- 057 A chronic lymphoblastic leukemia (CLL) patient's video diary: Immune system - Video [Last Updated On: November 22nd, 2014] [Originally Added On: November 22nd, 2014]
- 058 MS Stem Cell Medication Therapy Shows Promise - Video [Last Updated On: January 2nd, 2015] [Originally Added On: January 2nd, 2015]
- 059 Stress Weakens the Immune System [Last Updated On: May 19th, 2015] [Originally Added On: May 19th, 2015]
- 060 Your Immune System: Natural Born Killer - Crash Course ... [Last Updated On: May 19th, 2015] [Originally Added On: May 19th, 2015]
- 061 How to boost your immune system - Harvard Health [Last Updated On: May 19th, 2015] [Originally Added On: May 19th, 2015]
- 062 How Your Immune System Works - HowStuffWorks [Last Updated On: May 19th, 2015] [Originally Added On: May 19th, 2015]
- 063 Immune system - Wikipedia, the free encyclopedia [Last Updated On: May 19th, 2015] [Originally Added On: May 19th, 2015]
- 064 Immune response: MedlinePlus Medical Encyclopedia [Last Updated On: May 21st, 2015] [Originally Added On: May 21st, 2015]
- 065 Immune and Lymphatic Systems Anatomy Pictures and ... [Last Updated On: May 24th, 2015] [Originally Added On: May 24th, 2015]
- 066 Adaptive immune system - Wikipedia, the free encyclopedia [Last Updated On: May 24th, 2015] [Originally Added On: May 24th, 2015]
- 067 Immune System: Can Your Immune System ... - Biology of Aging [Last Updated On: May 29th, 2015] [Originally Added On: May 29th, 2015]
- 068 What Is the Immune System? (with pictures) [Last Updated On: June 1st, 2015] [Originally Added On: June 1st, 2015]
- 069 Immune System - KidsHealth [Last Updated On: June 3rd, 2015] [Originally Added On: June 3rd, 2015]
- 070 The Immune System | Health | Patient.co.uk [Last Updated On: June 8th, 2015] [Originally Added On: June 8th, 2015]
- 071 Immune System - Cancer Fighting Strategies [Last Updated On: June 27th, 2015] [Originally Added On: June 27th, 2015]
- 072 How Sleeping Can Affect Your Immune System - Mercola.com [Last Updated On: July 3rd, 2015] [Originally Added On: July 3rd, 2015]
- 073 14.00-Immune-Adult - Social Security Administration [Last Updated On: July 3rd, 2015] [Originally Added On: July 3rd, 2015]
- 074 Immune System: MedlinePlus - National Library of Medicine [Last Updated On: July 5th, 2015] [Originally Added On: July 5th, 2015]
- 075 Lack of Sleep and the Immune System - WebMD [Last Updated On: July 5th, 2015] [Originally Added On: July 5th, 2015]
- 076 Easy Immune System Health home page [Last Updated On: July 13th, 2015] [Originally Added On: July 13th, 2015]
- 077 Immune System News -- ScienceDaily [Last Updated On: July 24th, 2015] [Originally Added On: July 24th, 2015]
- 078 How Sleeping Can Affect Your Immune System [Last Updated On: August 5th, 2015] [Originally Added On: August 5th, 2015]
- 079 The immune system and cancer | Cancer Research UK [Last Updated On: August 19th, 2015] [Originally Added On: August 19th, 2015]
- 080 Innate immune system - Wikipedia, the free encyclopedia [Last Updated On: August 31st, 2015] [Originally Added On: August 31st, 2015]