/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

var Login ={
    init:function(){},
    submit:function(){
        $('#log-in-form').submit();
    }
};

//This Object is used for 
var Redirect = {
	init:function(){},
	go:function(url){window.location = url},
	intro:function(){
		window.setTimeout(function() {
			Redirect.go('/index/home');
		}, 1000);
	}
	
}


