
// /////////////////////
// homeModule class
// /////////////////////
//fields
pdHomeModule.prototype._transport;
pdHomeModule.prototype._user;
pdHomeModule.prototype._channelId = 'site.shared';

function pdHomeModule(){}

pdHomeModule.prototype.initialize = function(transport, user){
  	//this function is called back during module registration
	this._transport = transport;
	this._user = user;	
	
	new Carousel($('home-scroller'),
		$$('#home-scroller .slide'),
		$$('#home-carousel a.carousel-jumper','#home-carousel a.carousel-control'),
		{
			duration: 1,
			auto: true,
			frequency: 7.5
		}
	);
}

//afterMove: function(){
//	pd_globalSiteFramework.trackEvent('Home', 'Carousel - move');
//}
