var mes = {
	title: 'Alert!',
	itr: 0,
	al: function(){
		alert(this.title);
		},
	set: function(str){
		this.title = str;
		this.al();
		return this;
		},
	relocate : function (page){
		
		switch(page){
			
			case 'home':
			this.itr = setTimeout('mes.reload("'+"/"+'");', 100);
			break;
			
			}		
		
		},
	reload : function(href){
		
		window.location.assign(href);
		}
	}
