/**
To minify use:
cd C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\NETAGENTS
java -jar minify.jar include/item-detail.js -o item-detail-min.js
Note: Does not work in firefox if minified.
jlint verified 16/08/2008
*/



NETAGENTS.namespace("page.Home");

NETAGENTS.page.Home = function(){

	
	return {
	
	
		init : function(whoWeAreLink, whatWeDoLink){
		   
		   return function(e){

			 try{	
				  NETAGENTS.util.Render.homePanels(document.getElementById('contentContainer'), whoWeAreLink, whatWeDoLink);
			 }
			 catch(err){
				 alert(err + ":init() home.js");
			 }
			 
		   };
		}
	};
	
	
}();

