$(document).ready(function(){
		$("#commentform").validate();
		$(".pagenav").hover(
			function () {
				$(this).css({'cursor':'crosshair'});
				$(".pagenav ul").css({'cursor':'crosshair','display' : 'inline'});
			},
			function () {
				$(".pagenav ul").css({'display' : 'none'});
			}
		);
		$("#sbutton").hover(
			function(){
				$(this).css({'background-position':'0 -20px','cursor':'pointer'});
			},
			function(){
				$(this).css({'background-position':'0 0'});
			}
		);
		$(".tobottom").click(function(){
			$.scrollTo("#respond",800);
			return false;
		});
	});
	