$(document).ready(function() {
  $('#nav').superfish({
	autoArrows: false,
	dropShadows: false
  });
  $('.falseLink').click(function() {
	return false;							 
  })
  if($('#testImg')[0].offsetWidth == 108) {
	$('#sectionHeader').each(function() {
	  string = $(this).text();
	  filename = string.toLowerCase().replace(/ /g, '-').replace(/([^0-9a-z-])/g,'');
	  $(this).html('<img src="/images/headers/' + filename + '.jpg" alt="' + string + '" width="919" height="171" />');
	});
	$('.module h3.nolink').each(function() {
	  string = $(this).text();
	  filename = string.toLowerCase().replace(/ /g, '-').replace(/([^0-9a-z-])/g,'');
	  $(this).html('<img src="/images/headers/sidebar/' + filename + '.gif" alt="' + string + '" width="216" height="47" />');
	});
	$('.module h3 a').each(function() {
	  string = $(this).text();
	  filename = string.toLowerCase().replace(/ /g, '-').replace(/([^0-9a-z-])/g,'');
	  $(this).html('<img src="/images/headers/sidebar/' + filename + '.gif" alt="' + string + '" width="216" height="47" />');
	});
  }
  $('#registration').click(function() {
	window.location=$(this).find("a").attr("href"); return false;
  });
  var date = $('#copyright').text();
  var year = new Date().getFullYear();
  if (year > date) {
	$('#copyright').text(year);
  } 
})