	window.onload = Init;
	
	function Init() {
		correctSafari();
	}

	function correctSafari() {
		$(document).ready(function() {
			if (jQuery.browser.safari) {
				document.getElementById('conteneurEdtNewsletter').style.margin = '-18px 8px 0px 0px';
				document.getElementById('lecteurTv').style.margin = '-16px 8px 0px 0px';
			}
 		});
 	}
		
	function correctSafari_old() {
		//alert(navigator.userAgent);
		//alert(navigator.userAgent.indexOf('Apple'));
		if (navigator.userAgent.indexOf('Apple') != -1) {
			document.getElementById('conteneurEdtNewsletter').style.margin = '-18px 8px 0px 0px';
			document.getElementById('lecteurTv').style.margin = '-16px 8px 0px 0px';
		}
	}