
$(document).ready(function(){
	
	//ROLLOVER EFFECTS
	//Fade effects for subnav 
	 $('#subnav li').removeAttr('style');
	 $('#subnav li').not('.subnav-landing, .subnav-section-landing').find('a:first-child').not('.selected').css({color: '#394952'}).hover(function () {
         // on hover
	      $(this).stop().animate({color: '#ffffff'},200)
         }, function () {
         // off hover
          $(this).stop().animate({color: '#394952'},200)
      });
	 $('#subnav li').not('.subnav-section').find('ul li a').not('.selected').css({color: '#70818C',backgroundColor: '#F1F1F1'}).hover(function () {
         // on hover
          $(this).stop().animate({color: '#00bbdc',backgroundColor: '#ffffff' },200)
     }, function () {
         // off hover
    	 $(this).stop().animate({color: '#70818C',backgroundColor: '#F1F1F1'},200)
     });
	 
	 //reset css to prevent over state being stuck on back button
	 $(window).unload(function(){
		 $('#subnav li').removeAttr('style');
	 });
	 
		
});
