
		$("div.pageNumberButton").hover(function() {
		    $(this).animate({opacity: "0.4"}, "fast");
		}, function() {
		    $(this).animate({opacity: "1.0"}, "fast");
		});
		
		
		$("div.pageButton").click(function(event) {
			$(this).attr("opacity", "1.0");
		    window.location.href = $(this).find("a").attr("href");
		})
		
		$("div.pageNumberButton").click(function(event) {
			$(this).attr("opacity", "1.0");
		    window.location.href = $(this).find("a").attr("href");
		})
		
		$("div.pageButton").hover(function() {
		    $(this).animate({opacity: "0.4"}, "fast");
		}, function() {
		    $(this).animate({opacity: "1.0"}, "fast");
		});
		
