Code.ns('Website.Pages');

Website.Pages.ProtectingAntiBacterialHandWash = new function(){

	//Private
	var _self = this;
	
	//End Private
	
	
	//Public
	
	this.ready = function(){
		
		$j('#mycarousel').jcarousel();
		Website.ifixpng('div.jcarousel-next-horizontal, div.jcarousel-prev-horizontal');
		
	};
	
	//End Public

};

$j().ready(function(){
	Website.Pages.ProtectingAntiBacterialHandWash.ready();
});