$(document).ready(function(){

	var versionIE = getInternetExplorerVersion();
	if(versionIE == 6)
	{
		$('.NavCatalogueCat ul').each(function(){
			var LargeurMax = 0;
			$('li a', this).each(function(){
				if(LargeurMax < $(this).width())
				{
					LargeurMax = $(this).width();
				}
			});
			$(this).css('width', LargeurMax);
		});
		$('#ToolBoxIdentificationMotDePasse').css('width', 75);
		$('#FormToolBoxIdentificationBtn').css('top', 2);
	}
});
