$(document).ready(function() {

	$("#one, #two, #three, #four, #five, #six, #seven").hover(
  function () {
    $(this).addClass("hover");
  }, 
  function () {
    $(this).removeClass("hover");
  }
);


}); //end
	
