Array.prototype.include_p = function(item) {
	for (i = 0, len = this.length; i < len; i++) {
		if (this[i] == item) {
			return true;
		}
	}
	return false;
}

var sp = new spAuctionLib();
$.cookie("loanListPageNo",null);
$(document).ready(function(){
	sp.init("corporate");
	sp.changeCategory("all", 1);
});

function gotoAuctionDetail(auctionId) {
	location.href = "/auctiondetails.jsp?id=" + auctionId;
}

