
      $(document).ready(function() {

          	//Fixes IE6 Lack of Support for :hover pseudo-class on anything other than 'a'
	$('#header').hover(function() {																					
  		
		$(this).addClass('any-hover');
		}, function() {
  			$(this).removeClass('any-hover');			
	});
      });

