$(document).ready(function(){
//	DD_belatedPNG.fix('#s_agreed');
	$("input.hover-button").hover(
		function () {
			$(this).addClass("hover");
		},
		function () {
			$(this).removeClass("hover");
		}
	);
});
