Week 1
Abe Kanan
2/2 - 2/6
Week 2
???
2/9 - 2/13
Week 3
???
2/16 - 2/20
Week 4
???
2/23 - 2/27
We need your help and feedback!
Listen to the Loop every weekday morning this week to hear Live on-air auditions between 6:00-9:00AM. Each week we'll reveal another morning personality.
' +
'' +
'';
//insert lightbox HTML into page
$('body').append(lightboxone);
}
});
$('#lightboxone').live('click', function() { //must use live, as the lightbox element is inserted into the DOM
$('#lightboxone').hide();
});
$('#week-two').click(function(e) {
//prevent default action (hyperlink)
e.preventDefault();
/*
If the lightbox window HTML already exists in document,
change the img src to to match the href of whatever link was clicked
If the lightbox window HTML doesn't exists, create it and insert it.
(This will only happen the first time around)
*/
if ($('#lightboxtwo').length > 0) { // #lightbox exists
//show lightbox window - you could use .show('fast') for a transition
$('#lightboxtwo').show();
}
else { //#lightbox does not exist - create and insert (runs 1st time only)
//create HTML markup for lightbox window
var lightboxtwo =
'
'
Click to close
' +
'
'
Coming Soon!
' +
'
' +
'
';
//insert lightbox HTML into page
$('body').append(lightboxtwo);
}
});
$('#lightboxtwo').live('click', function() { //must use live, as the lightbox element is inserted into the DOM
$('#lightboxtwo').hide();
});
$('#week-three').click(function(e) {
//prevent default action (hyperlink)
e.preventDefault();
/*
If the lightbox window HTML already exists in document,
change the img src to to match the href of whatever link was clicked
If the lightbox window HTML doesn't exists, create it and insert it.
(This will only happen the first time around)
*/
if ($('#lightboxthree').length > 0) { // #lightbox exists
//show lightbox window - you could use .show('fast') for a transition
$('#lightboxthree').show();
}
else { //#lightbox does not exist - create and insert (runs 1st time only)
//create HTML markup for lightbox window
var lightboxthree =
'
'
Click to close
' +
'
'
Coming Soon!
' +
'
' +
'
';
//insert lightbox HTML into page
$('body').append(lightboxthree);
}
});
$('#lightboxthree').live('click', function() { //must use live, as the lightbox element is inserted into the DOM
$('#lightboxthree').hide();
});
$('#week-four').click(function(e) {
//prevent default action (hyperlink)
e.preventDefault();
/*
If the lightbox window HTML already exists in document,
change the img src to to match the href of whatever link was clicked
If the lightbox window HTML doesn't exists, create it and insert it.
(This will only happen the first time around)
*/
if ($('#lightboxfour').length > 0) { // #lightbox exists
//show lightbox window - you could use .show('fast') for a transition
$('#lightboxfour').show();
}
else { //#lightbox does not exist - create and insert (runs 1st time only)
//create HTML markup for lightbox window
var lightboxfour =
'
'
Click to close
' +
'
'
Coming Soon!
' +
'
' +
'
';
//insert lightbox HTML into page
$('body').append(lightboxfour);
}
});
$('#lightboxfour').live('click', function() { //must use live, as the lightbox element is inserted into the DOM
$('#lightboxfour').hide();
});
});