$(function(){	
	$('div.paganation a.submit').click(function(){
		// search results page - page link clicked
		if (this.className.indexOf('print') != -1) $('#util').attr("name",'print');
		else if (this.className.indexOf('quote') != -1) $('#util').attr("name",'quote');
		else if (this.className.indexOf('first') != -1) $('#util').attr("name",'first');
		else if (this.className.indexOf('last') != -1) $('#util').attr("name",'last');
		else if (this.className.indexOf('prev') != -1) $('#util').attr("name",'prev');
		else if (this.className.indexOf('next') != -1) $('#util').attr("name",'next');
		else if (this.className.indexOf('page') != -1) $('#page').val(parseInt(this.innerHTML));
		else return false;
		document.forms[0].submit();
		return false;
	});
});
