$(document).ready(function() {
$("div.callout1").hover(function(){  // for all div.callouts apply hover
  	$(this).addClass("hovercallout")  //for onHover add the class listed
	},
	function(){
  	$(this).removeClass("hovercallout"); //for offHover remove the class listed
	});
});