Musicians put on a show outside Lincoln assisted-living center
Please subscribe to keep reading. You can cancel at any time.
-
{{special_title}}
- {{action_button}}
‘);
$(‘.lee-featured-subscription’).html(sFallBack);
}
function lee_formatPackage(oService){
try {
var bOnlyModal = true;
var oSettings = lee_getPackageSettings(oService.HomeMembership);
var newService = {};
if(parseInt(oService.WebFeatureFG) === 2) return false;
if(oService.WebStartPrice != ”){
var custom = JSON.parse(oService.WebStartPrice);
$.each(custom, function(k,v){
newService[k] = v;
});
}
if(bOnlyModal && newService.in_modal && newService.in_modal.toLowerCase() === ‘false’) return false;
if(!bOnlyModal && newService.not_members && newService.not_members.toLowerCase() === ‘true’) return false;
newService.has_featured_class = newService.featured ? ‘featured-package’ : ”;
newService.sort = parseInt((newService.sort) ? newService.sort : oSettings.sort);
newService.title = (newService.package_title && newService.package_title != ”) ? newService.package_title : oSettings.title;
newService.level = oService.HomeMembership;
newService.html = oService.WebOfferHTML;
newService.disabled = newService.disable_purchase ? ‘disabled’ : ”;
var price = lee_formatPackagePrice(newService.start_price);
newService.start_price = price.cost;
newService.format_dollars = (price.format_dollars) ? price.format_dollars : ”;
newService.format_cents = (price.format_cents) ? price.format_cents : ”;
newService.start_at_rate = (newService.fixed_rate === ‘true’) ? ‘for the low price of’ : ‘starting at’;
if( !newService.term ) newService.term = ‘per month’;
newService.has_promotion_class = ”;
if( newService.promotional_price && newService.promotional_price != ” ){
newService.has_promotion_class = ‘has-promotion’;
var promotion = lee_formatPackagePrice(newService.promotional_price);
newService.promotional_price = promotion.cost;
newService.promotional_format_dollars = (promotion.format_dollars) ? promotion.format_dollars : ”;
newService.promotional_format_cents = (promotion.format_cents) ? promotion.format_cents : ”;
}
newService.special_title_class = newService.special_title ? ‘has-special-title’ : ”;
newService.special_label_class = newService.label ? ‘has-label’ : ”;
newService.action_button = ‘Sign Up’;
if(newService.disabled === ‘disabled’){
newService.start_at_rate = ‘Call us at’;
newService.start_price = ‘877-760-6006’;
newService.term = ‘to get started’;
newService.action_button = ‘Call Today’;
}
window.lee_service_impressions.push({
‘id’: newService.level,
‘name’: newService.title,
‘price’: newService.start_price,
‘brand’: “journalstar.com”,
‘category’: ‘subscription’,
‘list’: ‘Block’,
‘position’: newService.sort
});
return newService;
} catch(e){
if(window.console) console.warn(e);
return false;
}
}
function lee_sortPackages(property) {
var sortOrder = 1;
if(property[0] === “-“) {
sortOrder = -1;
property = property.substr(1);
}
return function (a,b) {
var result = (a[property] b[property]) ? 1 : 0;
return result * sortOrder;
}
}
function lee_getPackageSettings(sPackage){
switch(sPackage.toLowerCase()){
case ‘dob’:
return {title: ‘Digital Basic’, sort: 0};
break;
case ‘dop’:
return {title: ‘Digital Plus’, sort: 1};
break;
case ‘dopl’:
return {title: ‘Digital Platinum’, sort: 2};
break;
case ‘silv’:
return {title: ‘Silver’, sort: 3};
break;
case ‘gold’:
return {title: ‘Gold’, sort: 4};
break;
case ‘plat’:
return {title: ‘Platinum’, sort: 5};
break;
}
}
function lee_replacePackageTokens(sPackage, oService, sCol){
var hasPromotion = false;
$.each(oService, function(k,v){
if( k === ‘html’){
v = v.replace(new RegExp(‘{{domain}}’, ‘gi’), ‘journalstar.com’)
.replace(new RegExp(‘{{site_name}}’, ‘gi’), ‘JournalStar.com’)
.replace(new RegExp(‘{{business_name}}’, ‘gi’), ‘The Lincoln Journal Star’)
.replace(new RegExp(‘{{site_phone}}’, ‘gi’), ‘877-760-6006’);
}
sPackage = sPackage.replace(new RegExp(‘{{‘+k+’}}’, ‘gi’), v);
});
if(sCol) sPackage = sPackage.replace(‘{{col}}’, sCol);
return sPackage;
}
try {
var oPackages = [],
oFeatured = false,
sHtml = ”,
sTemplate = $(‘#lee-service-template’).html();
$.each(window.leeMembershipPackages, function(i, oService){
var oService = lee_formatPackage(oService);
if(oService){
oPackages.push(oService);
if(oService.featured === ‘true’) oFeatured = oService;
}
});
if(oPackages.length === 0){ throw ‘No packages defined’; }
oPackages.sort(lee_sortPackages(‘sort’));
if(!oFeatured) oFeatured = oPackages[0];
if(oPackages.length === 1){
sTemplate = $(‘#lee-service-template-single’).html();
$(‘#lee-services-list’).addClass(‘single’);
} else {
$(‘#lee-services-list’).addClass(‘multiple’);
}
switch(oPackages.length){
case 6: var sCol = ‘2’; break;
case 5: var sCol = ‘5ths’; break;
case 4: var sCol = ‘3’; break;
case 3: var sCol = ‘4’; break;
case 2: var sCol = ‘6’; break;
default: var sCol = ’12’; break;
}
$(‘#lee-services-modal’).addClass(‘packages_’+oPackages.length);
$.each(oPackages, function(i, oService){
sHtml += lee_replacePackageTokens(sTemplate, oService, sCol);
});
$(‘#lee-services-list .packages’).html(sHtml).promise().then(function(){
$(‘#lee-services-list .loading’).hide();
$(‘#lee-services-list .packages’).css(‘opacity’, 1);
});
if(!__tnt.user.services){
if( $(‘.lee-featured-subscription’).length > 0 && oFeatured ){
$(‘.lee-featured-subscription’).each(function(){
var html = $(this).html();
if( !oFeatured.featured_button_text ){
if(oFeatured.promotional_price){
oFeatured.featured_button_text = oFeatured.promotional_format_dollars+oFeatured.promotional_price+oFeatured.promotional_format_cents+’ ‘+oFeatured.term;
} else {
oFeatured.featured_button_text = ‘Join for ‘+oFeatured.format_dollars+oFeatured.start_price+oFeatured.format_cents+’ ‘+oFeatured.term;
}
}
html = lee_replacePackageTokens(html, oFeatured);
$(this).html(html);
if(oFeatured.promotional_price) $(this).addClass(‘has-promotiom’);
if( $(this).hasClass(‘show-after-loaded’) ) $(this).show();
});
}
}
} catch (e) {
if(window.console) console.warn(e);
lee_serviceError();
}
window.lee_fetched_services = true;
});
Sign Up Today and Support Local Journalism
Enjoy more articles from Lincoln’s Most Trusted Information Source. Subscribers can log in for unlimited digital access
Residents at Lexington Assisted Living Center look on as musicians Jennifer Van Dyke (left) and Rachel Mulcahy perform outside their windows Wednesday.
Jen Mathews (left) talks through a window to resident Patty Nieveen at Lexington Assisted Living Center on Wednesday.
Rachel Mulcahy leads a performance for residents of the Lexington Assisted Living Center on Wednesday, March 25.
Keeping social distance, Karen Church (center) listens as friends and family perform music at the Lexington Assisted Living Center on Wednesday.
Jacqueline Higgins looks on from a balcony as Jen Mathews (left) holds a sign to cheer up the residents of Lexington Assisted Living Center on Wednesday.
Musician Mike Semrad performs at The Legacy Retirement Community on Wednesday.
‘);
}
Residents of the Lexington Assisted Living Center watched and listened from their apartments and the balconies overlooking the center’s courtyard Wednesday afternoon as the song rang out from a half-dozen singers and the guitar of Rachel Mulcahy, whose stage name is Miss Katie Rae.
This land is your land
This land is my land …
About a half-hour later, across 56th Street at The Legacy, musician Mike Semrad and guitarist Mike McCracken rocked through Buddy Holly’s “Oh, Boy” in the parking lot, amplified by a portable sound system.
The singing outside the neighboring centers coincidentally overlapped. The concerts were part of a dramatic change in their operations and programming created by the coronavirus pandemic.
It’s been nearly three weeks since Nebraska’s first coronavirus patient, and since then, nursing homes, assisted-living and senior living centers with restricted access have been looking for ways to keep residents calm and occupied. Music is a perfect vehicle for both, said Legacy Communities CEO Greg Joyce.
“We have live music all the time,” Joyce said. “But we’ve never done anything like this before. We’ve never done it where we’re trying to keep people comfy in their rooms and 6 feet apart.”
Share this:
- Click to share on Facebook (Opens in new window) Facebook
- Click to share on Reddit (Opens in new window) Reddit
- Click to share on X (Opens in new window) X
- Click to email a link to a friend (Opens in new window) Email
- Click to share on Pinterest (Opens in new window) Pinterest
- Click to share on Tumblr (Opens in new window) Tumblr
- Click to share on LinkedIn (Opens in new window) LinkedIn
- Click to share on Pocket (Opens in new window) Pocket
- Click to print (Opens in new window) Print





