/**
To minify use:
cd C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\SITE
java -jar minify.jar include/index.js -o include/index-min.js
*/

SITE.namespace("Index");

SITE.page.Index = function(){

	   
	   return{
		   init : function(){
		       return (function(e){
		            try{
              
			        }
			        catch(err){
			           alert(err + ": index init");
			        }
		       });
		   }
	   };

}();


	
	
