$(document).ready(function() {
   /*get current year and write it to the footer */

   var currentYear = (new Date).getFullYear();
   $('#copyright').html('Copyright &copy;' + currentYear + ' Palmetto Clean Energy');
	
	$("#pri-nav li a").hover(
	  function () {
		$(this).parent().prev().children("a").addClass("hover");
	
	  },
	  function () {
		$(this).parent().prev().children("a").removeClass("hover");
		
		  }
	)
	
	
	/* Fade in the hero images when each page loads */
	$("#header-hero").css('display', 'none');
	$("#header-hero").fadeIn('slow');
	
	/* Fade in the home her hero images when each page loads */
   $("#home-promo img").css('display', 'none');
   $("#home-promo img").fadeIn('slow');
	
});