$(function(){
	itemsPerPage = 4; // no. of items you want to show on one page
	firstPageSymbol = '<<'; // to indicate First Page
	previousPageSymbol = '&#9668;'; // to indicate Previous Page
	nextPageSymbol = '&#9658;'; // to indicate Next Page
	lastPageSymbol = '>>'; // to indicate Last Page
	separator = '|'; // To separate paginator's items
	paginatorPosition = 'bottom'; // where you want the paginator to be. Accepted values are 'top','bottom','both'
	paginatorStyle = 3; // To define which style of paginator you need.
	anchorLink = 'javascript:void(0);'; // if you want to change href of the paginator anchor text (links for page) to '#' or to something else. As # is append on the address bar upon clicking I used javascript:void(); which is clean.
	showIfSinglePage = true; // set it tp false if you don't want to show paginator incase there is only one page, true if show paginator even if there is just one page.
	$("#list").pagination();
});
