$(document).ready(function () {
	
	// Removes inline opacity style from twitter widget - Chrome/XP bug
	if ($('.twtr-tweet').length) {$('.twtr-tweet').removeAttr('style');}
	if ($('.poll').length) {$('.poll').pollFormat('p');}

	// Remove Calendar Title attribute
	$('.msl_event_calendar').removeAttr('title');

	// Make the whole thing clickable
	$('#banner .news_item').each(function () {
		articleLink = $(this).find('a').attr('href');
		$(this).find('.news_item_inner').wrap('<a class="wraplink" href="' + articleLink + '"></a>');
	});

});
