$(document).ready(function() {
	if($('#test')[0].offsetWidth == 1) {
	  $('#sectionHeader').each(function() {
		string = $(this).text();
		filename = string.toLowerCase().replace(/ /g, '-').replace(/([^0-9a-z-])/g,'');
		$(this).html('<img src="/images/headers/' + filename + '.gif" alt="' + string + '" width="916" height="122" />');
	  });
	  $('#bopLinks a').text('');
	}
	$('#nav').superfish({
	  autoArrows: false,
	  dropShadows: false
	});
	$('#sidebar h3').parent().mouseover(function() {
		$(this).children('h3').toggleClass('hover');														  
	}).mouseout(function() {
		$(this).children('h3').toggleClass('hover');			  
	});
	var date = $('.copyrightDate').text();
	var year = new Date().getFullYear();
	if (year > date) {
  		$('.copyrightDate').text(year);
	} 
})