var Site = {

	// this vars should be set in <head> server-side
	config : {
		base_url : '',
		site_url : ''
	},
	
	// this method is called on every page
	start : function() {

		// On Dom Ready
		jQuery(function($) {

			$('input.hint').input_hint();
				$('a[rel*=facebox]').facebox();
			
		});
		
		// Load Immediately
		(function($) {
		
		})(jQuery);


		// On Window Load
		jQuery(window).load(function($) {

		});

	},
	
	login : function() {
	}
	
};

Site.start();