$(document).ready(function() {
$("h1").hover(function(){ // for all h1s apply hover
  	$(this).addClass("hoverAllHeaders"); //for onHover add the class listed
	},
	function(){
  	$(this).removeClass("hoverAllHeaders"); //for offHover remove the class listed
	});
});