var b = navigator.userAgent.toLowerCase();

// Figure out what browser is being used
jQuery.browser = {
	safari: /webkit/.test(b),
	opera: /opera/.test(b),
	msie: /msie/.test(b) && !/opera/.test(b),
	msie6: /msie 6.0/.test(b) && !/opera/.test(b),
	mozilla: /mozilla/.test(b) && !/(compatible|webkit)/.test(b)
};



$(document).ready(function() {
	if ($.browser.msie6) {
		resizepMenuElements();
	}	

	$('table #plusInfo').hover(function(){
		$('table #plusInfoDetail').show();
	}, function(){
		$('table #plusInfoDetail').hide();
	});      


	// Affichage de la date
	 var currentTime = new Date() ;  

	 var month = currentTime.getMonth() + 1;
	 var day = currentTime.getDate()        ;
	 var year = currentTime.getFullYear()    ;
	 if (month<10){
	 	month = '0'+month;
	 }
	 if (day<10){
	 	day = '0'+day;
	 }
	 $('#date').attr('value', day+' / '+ month +' / '+ year);
     /*console.info($("alloooooo"));
	 $('#TB_closeWindowButton').click( gererConditions );
	 console.info($('#TB_closeWindowButton'));*/
	
	 $('.mesCasesReactifs').click( gererMajoration );
	 $('.mesChampsReactifs').change( calculTotaux );
	 $('#abo').click(calculRemise);
	 $('#300dpi').click(calculMajoration);
 
	 console.info('test');
	 
	 $('#form1').submit(verifier_formulaire);     
	
});


function resizepMenuElements(){
	var largeurMenu = $('#menu').width();
	
	var nombreEl = $('#menu li').each(function(){
		var longueur = $(this).text().length;
		if(longueur <= 11){
			$(this).width(95);
		}else if(longueur > 11 && longueur<=17 ){
			$(this).width(125);
		}else if(longueur > 17 ){
			$(this).width(150);
		}

	});
	
	
	//$('#menu li').width(largeurMenu / nombreEl);
}
