var monoConfig
function MonoConfig() {
	this.currentList =  'hot'
	this.currentOrder = 'name'
    this.currentVoteType = null
    this.currentPage = 1
    this.orderOptions = Array('name', 'rate', 'price', 'votes', 'date')
    this.showListOnLoad = false
    this.userLogedIn = false
    this.showConfirm = false
}

monoConfig = new MonoConfig