
Meatball sliders from Cork & Kerry at the Park (photo: Joseph Storch)
So many flat screens, so little space at the bar. Sports fan or not, much of the city will be, ahem, a little preoccupied this Sunday, from noon until 3 p.m., watching Da Bears. If your plasma isn't working, and you want to socialize with your fellow Bears fans, check out the screens, beers and grub at one of these five, fine watering holes:
1. Joe's Sports Bar (940 W. Weed St., 312- 337-3487)
2. Mitchell's Tap (3356 S. Halsted Ave., 773- 927-6073)
3. Glascott's (2158 N Halsted St., 773- 281-1205)
4. Cork and Kerry at the Park (3258 S. Princeton Ave., 312-842-0769)
5. Timothy O'Toole's Pub (622 North Fairbanks Court, 312- 642-0700)

Go Bears.
";
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