$(document).ready(function() {
						   $('#header .widget').find('dd.msl_event_time').each(function() {
																						$.trim($(this).text());
																						$(this).append(',');
																						});
						   $('#contentarea .widget').find('.news_item_inner').each(function() {
																							$(this).find('.msl_pubdate').insertBefore($(this).find('h5'));
																							});
						   var accpanel = $('.controlpanel.sidepanel ul');
						   if (accpanel.length != 0) {
							   var acc = accpanel.find('li:first').html().replace(/&amp;/g, '');
							   $('.controlpanel.sidepanel ul').find('li:first').html(acc);
						   }
						   
						   function footerPadding() {
							   var padAmount = $('#footer').css('height');
							   $('#contentarea').css('padding-bottom', padAmount);
						   }
						   
						   footerPadding();
						   
						   $('a#maphide').bind('click', function() {
																 $('#sitemap').find('.column').toggle();
																 footerPadding();
																 });
						   
						   });
