var CMS={};
CMS.outils = {	
	platForm:'',
	typeNavMobile:false,
	typeNavPomme:false,
	classByTypeNav:function()
	{
		if(this.typeNavMobile) $('body').addClass(this.platForm);
	},
	init:function()
	{
		this.platForm = navigator.platform.toLowerCase();
		switch (this.platForm)
		{
			case 'ipad':
			case 'iphone':
			case 'ipod':
				this.typeNavPomme = true;
				this.typeNavMobile = true;
				break;
		}
	}
};

$(document).ready(function(){CMS.outils.init(); })
