'); 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_state175287['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_state175287['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_state175287']; 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_state175287']; 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) - Health care workers braved the cold Monday, Jan. 10 to test people for COVID-19 as testing begins to taper off in some areas.
Despite those single-digit temps, health care workers stood outside all day Monday to make sure everyone who needed a test got one.
"We have a tent that we can come in, a warming tent, and the cars move through pretty quickly through here, so it's not too bad," Certified Nursing Assistant Louise Noelle said.
While testing still remains high, Nick Tomaro with the Milwaukee Health Department said it is beginning to taper off. Since last Thursday, testing at the three city of Milwaukee sites has dropped off 25 percent.
"We have obviously tried everything we can for staff. Parkas, hot hands, gloves, we have heated areas inside our building. Can't say enough about the staff, they're working really, really hard," Tomaro said. "I think it has to do with the holidays to a certain extent. I think there's a lot of factors for people coming in for testing around the holidays -- trying to be safe, getting together with family, some people traveling."
Summit Clinical Labs in New Berlin is also seeing a drop-off on testing, but staffing has become an issue.
"We are down, about 15 percent of our workforce is sick. We're just like any other workplace. We're having the same issues as everyone else, so it is kind of crazy having the added demand with rest of the workforce," co-owner Faisal Ahmed-Yahia said.
He said Monday saw shorter lines than last week. He expects to test about 200 fewer people.
"I think it was just a perfect storm of omicron and then the holidays, and now the holidays are starting to taper off, people that have had exposures and what not," Ahmed said.
If you do get tested at one of the city of Milwaukee testing sites, the city said it is quicker to pre-register before you go.
Excerpt from:
Health care workers brave bitter cold temperatures at testing sites in Milwaukee - WDJT
- How good is fish for your diet? [Last Updated On: November 8th, 2009] [Originally Added On: November 8th, 2009]
- What foods have both fiber and protein? [Last Updated On: November 8th, 2009] [Originally Added On: November 8th, 2009]
- Is There Evidence That Acupuncture Works? [Last Updated On: November 8th, 2009] [Originally Added On: November 8th, 2009]
- What are some good fiber foods? [Last Updated On: November 8th, 2009] [Originally Added On: November 8th, 2009]
- Can Green Tea fight HIV infection? [Last Updated On: November 8th, 2009] [Originally Added On: November 8th, 2009]
- Quality of GNC Supplements [Last Updated On: November 8th, 2009] [Originally Added On: November 8th, 2009]
- The Gene Smart Diet [Last Updated On: November 8th, 2009] [Originally Added On: November 8th, 2009]
- Tips for eating in a vegetarian lifestyle [Last Updated On: November 8th, 2009] [Originally Added On: November 8th, 2009]
- Regarding the Starting of a new diet regimen [Last Updated On: November 8th, 2009] [Originally Added On: November 8th, 2009]
- Thoughts on Dropping Weight [Last Updated On: November 8th, 2009] [Originally Added On: November 8th, 2009]
- What do doctors think about vitamin E supplements? [Last Updated On: November 8th, 2009] [Originally Added On: November 8th, 2009]
- What herbs or supplements are commonly used for depression? [Last Updated On: November 8th, 2009] [Originally Added On: November 8th, 2009]
- Is there a safe way to lose a lot of weight? [Last Updated On: November 8th, 2009] [Originally Added On: November 8th, 2009]
- Diets that promise you will lose weight [Last Updated On: November 8th, 2009] [Originally Added On: November 8th, 2009]
- Are Fish Toxins Linked to Diabetes? [Last Updated On: November 8th, 2009] [Originally Added On: November 8th, 2009]
- Can Plastic Surgery Help Migraines? [Last Updated On: November 8th, 2009] [Originally Added On: November 8th, 2009]
- Weight Loss Surgery Eradicates Diabetes Symptoms [Last Updated On: November 8th, 2009] [Originally Added On: November 8th, 2009]
- Found: A Gene That Controls Fat Cells [Last Updated On: November 8th, 2009] [Originally Added On: November 8th, 2009]
- Sugars and Starches, what's the difference? [Last Updated On: November 8th, 2009] [Originally Added On: November 8th, 2009]
- Improving your health with a serving of nuts? [Last Updated On: November 8th, 2009] [Originally Added On: November 8th, 2009]
- Is Your Diet Causing You To Be Depressed? [Last Updated On: December 13th, 2009] [Originally Added On: December 13th, 2009]
- Placebo Effect: Magnetic Bracelet Therapy [Last Updated On: December 13th, 2009] [Originally Added On: December 13th, 2009]
- Does serotonin promote sleep? [Last Updated On: December 13th, 2009] [Originally Added On: December 13th, 2009]
- Decreased energy levels - Overeating, Sleep, Nutrition [Last Updated On: February 1st, 2010] [Originally Added On: February 1st, 2010]
- When will the body begin to cannibalize muscle tissue? [Last Updated On: February 7th, 2010] [Originally Added On: February 7th, 2010]
- Foods that are high in antioxidants [Last Updated On: February 7th, 2010] [Originally Added On: February 7th, 2010]
- Editorial: Reduce health care costs by cutting administrative overhead [Last Updated On: April 1st, 2012] [Originally Added On: April 1st, 2012]
- Health Care Winners: Centene, Onyxx [Last Updated On: April 25th, 2012] [Originally Added On: April 25th, 2012]
- Dan Morain: Nurses union puts politics ahead of health [Last Updated On: April 25th, 2012] [Originally Added On: April 25th, 2012]
- What's next if Obamacare falls? [Last Updated On: April 25th, 2012] [Originally Added On: April 25th, 2012]
- Global Managed Health Care Services Industry [Last Updated On: April 25th, 2012] [Originally Added On: April 25th, 2012]
- Immigration Fight Echoes Health-Care Case at High Court [Last Updated On: April 25th, 2012] [Originally Added On: April 25th, 2012]
- Medical Centers Lead Workplace Wellness Effort [Last Updated On: April 25th, 2012] [Originally Added On: April 25th, 2012]
- The next health care overhaul? Look to employers [Last Updated On: April 25th, 2012] [Originally Added On: April 25th, 2012]
- Capital BlueCross Hosts Community Health Care Forums Focused on Managing Costs While Maintaining Quality [Last Updated On: April 25th, 2012] [Originally Added On: April 25th, 2012]
- County committee to look at area health care [Last Updated On: April 25th, 2012] [Originally Added On: April 25th, 2012]
- President Obama Calls on Students to Tell Congress: #DontDoubleMyRate - Video [Last Updated On: April 25th, 2012] [Originally Added On: April 25th, 2012]
- Sen. Coburn: Competition in Health Care to Allocate Resources - Video [Last Updated On: April 25th, 2012] [Originally Added On: April 25th, 2012]
- Jesse Kelly health care - Video [Last Updated On: April 25th, 2012] [Originally Added On: April 25th, 2012]
- PHC Vision Statement (short version) - Video [Last Updated On: April 30th, 2012] [Originally Added On: April 30th, 2012]
- The Bioeconomy Blueprint Panel - Video [Last Updated On: April 30th, 2012] [Originally Added On: April 30th, 2012]
- Providence Health Care's Vision Statement - Video [Last Updated On: April 30th, 2012] [Originally Added On: April 30th, 2012]
- Department of Health and Human Services: Minority Health Blogger Townhall - Video [Last Updated On: April 30th, 2012] [Originally Added On: April 30th, 2012]
- Health care worker accused of stealing identities of brain i - Video [Last Updated On: April 30th, 2012] [Originally Added On: April 30th, 2012]
- Health Care Reform, Part 1 of 3 | KYVE Insiders Roundtable - Video [Last Updated On: April 30th, 2012] [Originally Added On: April 30th, 2012]
- Health Care Reform: The ACA and Beyond - Video [Last Updated On: April 30th, 2012] [Originally Added On: April 30th, 2012]
- Is Broccoli Like Health Insurance? - Video [Last Updated On: April 30th, 2012] [Originally Added On: April 30th, 2012]
- Did Obama make a mistake on health care? - Video [Last Updated On: April 30th, 2012] [Originally Added On: April 30th, 2012]
- How Democrats Lie About Health Care - Video [Last Updated On: April 30th, 2012] [Originally Added On: April 30th, 2012]
- Toobin on Health Care: This was a "judicial hissy-fit" - Video [Last Updated On: April 30th, 2012] [Originally Added On: April 30th, 2012]
- President Obama says health care law will stand - Video [Last Updated On: April 30th, 2012] [Originally Added On: April 30th, 2012]
- Obama Defends Health Care Law From 'Judicial Activism' - Video [Last Updated On: April 30th, 2012] [Originally Added On: April 30th, 2012]
- Obama Healthcare Individual Mandate - Video [Last Updated On: April 30th, 2012] [Originally Added On: April 30th, 2012]
- President Obama attacks Supreme Court on health care - Video [Last Updated On: April 30th, 2012] [Originally Added On: April 30th, 2012]
- Raw Audio: High Court Dissects Health Care Act - Video [Last Updated On: April 30th, 2012] [Originally Added On: April 30th, 2012]
- Health care on trial - Video [Last Updated On: April 30th, 2012] [Originally Added On: April 30th, 2012]
- Final Day of Health Care Law Arguments Before Supreme Court - Video [Last Updated On: April 30th, 2012] [Originally Added On: April 30th, 2012]
- Feds to put up $1.9B for Oregon health overhaul [Last Updated On: May 4th, 2012] [Originally Added On: May 4th, 2012]
- Scuttling health care act will freeze Medicare, White House warns [Last Updated On: May 4th, 2012] [Originally Added On: May 4th, 2012]
- U.S. Health Care Spending High, But Quality Lags: Report [Last Updated On: May 4th, 2012] [Originally Added On: May 4th, 2012]
- Yes, the Health-Care Mandate Is About Liberty [Last Updated On: May 4th, 2012] [Originally Added On: May 4th, 2012]
- Health center gets $1M federal grant [Last Updated On: May 4th, 2012] [Originally Added On: May 4th, 2012]
- Health-care reform panel considers exchange options for Va. [Last Updated On: May 4th, 2012] [Originally Added On: May 4th, 2012]
- Hmong health care gap focus of Healthy House dinner [Last Updated On: May 4th, 2012] [Originally Added On: May 4th, 2012]
- Walsh-led health bill to be unveiled [Last Updated On: May 4th, 2012] [Originally Added On: May 4th, 2012]
- Ontario health system confusing for ailing seniors, study finds [Last Updated On: May 4th, 2012] [Originally Added On: May 4th, 2012]
- 'Health Care Deserts' More Common in Black Neighborhoods [Last Updated On: May 5th, 2012] [Originally Added On: May 5th, 2012]
- With federal money, Oregon kicks health care reform into high gear [Last Updated On: May 5th, 2012] [Originally Added On: May 5th, 2012]
- Nurse practitioners tackling more 'doctor' tasks [Last Updated On: May 5th, 2012] [Originally Added On: May 5th, 2012]
- Konza Prairie Health Center Receives $4.5 Million Grant [Last Updated On: May 5th, 2012] [Originally Added On: May 5th, 2012]
- Alberta wages hurting Sask. health care [Last Updated On: May 5th, 2012] [Originally Added On: May 5th, 2012]
- House releases plan to cut growth of Massachusetts health spending in half [Last Updated On: May 5th, 2012] [Originally Added On: May 5th, 2012]
- Mass. House Will Unveil Bill Seeking To Rein In Health Costs [Last Updated On: May 5th, 2012] [Originally Added On: May 5th, 2012]
- President Obama Welcomes the Kentucky Wildcats - Video [Last Updated On: May 5th, 2012] [Originally Added On: May 5th, 2012]
- President Obama Speaks on College Affordability - Video [Last Updated On: May 5th, 2012] [Originally Added On: May 5th, 2012]
- My First Job: Gene Sperling - Video [Last Updated On: May 5th, 2012] [Originally Added On: May 5th, 2012]
- Health-care costs worry near-retirees [Last Updated On: May 7th, 2012] [Originally Added On: May 7th, 2012]
- Massachusetts Institutes Health-Care Price Controls. Is America Next? [Last Updated On: May 7th, 2012] [Originally Added On: May 7th, 2012]
- Massachusetts Moves Toward Health-Care Price Controls. Is America Next? [Last Updated On: May 7th, 2012] [Originally Added On: May 7th, 2012]
- GOP plan boosts Pentagon, cuts social programs [Last Updated On: May 7th, 2012] [Originally Added On: May 7th, 2012]