If you've listened to top 40 radio in the past year, you've probably heard one of Julie Frost's songs. While The Black Eyed Peas' "Just Can't Get Enough" might sound like it was created by musical robots, it was actually written by Julie Frost and three other songwriters in collaboration with the Peas. Frost was also involved in writing Beyonce's "Countdown" and Madonna's Golden Globe winning song "Masterpiece."
To big music fans, this portion of the music industry is often viewed as incredibly cynical. It's surprising then, to be confronted with Julie Frost's quiet, heartfelt songs performed with sparse acoustic guitar accompaniment. This video is her performing "Mary's Song," dedicated to her sister.
Reconciling this song, voice and performer with the mega-hits she's penned is a little disorienting. Perhaps the top 40 hits written by committee aren't so heartless after all, they're just made of little bits of seven people's hearts.
Download this performance on the Live Music Thursday podcast.
";
if (ad) {
splashAd(ad);
setInterval(timer, 1000);
// Change value of the cookie so script doesn't run next pageload.
setCookie('wbezSplash', 2, 1)
}
}
function splashAd() {
//build the display area
$('
')
.css({
'position' : 'fixed',
'top' : '100px',
'left' : '300px',
'height' : '500px',
'width' : '700px',
'padding' : '10px',
'background-color' : 'white'
})
.appendTo('#page');
// Add link to skip the ad.
$('
Skip This Ad 10
')
.css({
'text-align' : 'right',
'cursor' : 'pointer'
})
.appendTo('#placeholder');
$('#skip-ad').click(function() {
$('#splash-ad').hide();
});
$('
').html(ad).appendTo('#placeholder');
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1327426452883-0'); });
}
function timer(){
var time = $('#time').text();
time--;
if(time >= 0){
$('#time').text(time);
}
if(time == 0){
$('#splash-ad').hide();
}
}
}
//Cookie Handling Functions -- from http://www.w3schools.com/js/js_cookies.asp
// Date setting modified
function setCookie(c_name, value, exdays) {
var exdate=new Date();
exdate.setDate(exdate.getDate() + exdays);
exdate.setUTCHours('00');
exdate.setUTCMinutes('00');
exdate.setUTCSeconds('00');
var c_value=escape(value) + ((exdays==null) ? "" : "; expires="+exdate.toUTCString());
document.cookie=c_name + "=" + c_value;
}
function getCookie(c_name) {
var i,x,y,ARRcookies=document.cookie.split(";");
for (i=0;i