		$(document).ready(function() {
			$(".eachpt").hover(
					function() { $(this).removeClass("hdiv"); },
					function() { $(this).addClass("hdiv"); }
			);
		});
