/**
 * @author Kasper
 */
function Class(){
	this.me = "home";
}

Class.prototype = {
	init:function(){
		
	},
	toString: function() { 
  		return this.me; 
	}
}

schwandt.home = new Class();

$(document).ready(function(){
	schwandt.home.init();
});
