var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-28718218-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
/* when document is ready */
$(function() {
/* initiate plugin */
$("div.holder").jPages({
containerID : "itemContainer",
callback : function( pages, items ){
$("#legend1").html(" 共 " + pages.count + "页,");
$("#legend2").html( " 共 " + items.count + "条");
}
});
/* when button is clicked */
$("button").click(function(){
/* get given page */
var page = parseInt( $("input").val() );
/* jump to that page */
$("div.holder").jPages( page );
});
});