function jigo(o){
	if ( typeof o   == 'undefined' || o  == '' ) { o = "http://www.magiemailing.com/insc/inscription.php?o=5986";}
	yo = window.open(o, 'lanews', 'height=550, width=450, top=100, left=100, toolbar=no, menubar=no, location=no, resizable=no, scrollbars=no, status=no');
	window.yo.focus();
	}

if ( navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPod/i) || navigator.userAgent.match(/iPad/i)  ) {
	$('html, body').css({ height: 'auto' });	// tout voir sur iphone
	}

$(document).ready(function () {
	if($.browser.msie && $.browser.version < 9) { 
		// rien pour < à ie9, tu n'avais qu'à finir ta purée, gros navet !!
		$('#main-menu li a, #menucat li a').hover(
			function() {	// obligé de le faire ici plutot que feuille css a cause des garçons (ie 7, ie 8)
				$(this).css('background-image', 'url(/'+filePATH +'/tp/menuon.png)');
				}, 
			function() {
				$(this).css('background-image', 'url(/'+filePATH +'/tp/menuoff.png)');
				});
		}else{
		$('#main-menu li a, #menucat li a').hover(
			function() {
				$(this).fadeTo('slow', 0.01);	// on estompe pas completement sinon l'image disparait et le lien ne se fait plus sur l'image
				}, 
			function() {
				$(this).fadeTo('slow', 1);	
				});
		}
	});

