$(document).ready(function(){
		$("#pagenav li a").mouseenter( function() {
			$(this).animate({fontSize:"18px"},200);
		}).mouseleave( function() {
			$(this).animate({fontSize:"12px"},200);
		});
		
		$(".plain li").css({
	"list-style-image" : "none",
	"margin" : "0px 0px",
	"padding" : "5px 2px",
	"border" : "1px solid #fff"
		});
 });