$(document).ready(function(){
	$('#ndt-close').click(function(){
		$('#ndt, #ndt-overlay').hide();
		return false;
	});

	// News des tages
	var $iBodyWidth = $('body').width();
	var $iBoxWidth = $('#ndt').width();
	var $iLeft = ( $iBodyWidth / 2 ) - ( $iBoxWidth / 2 );
	$('#ndt').css('left', $iLeft+'px').css('top', '30px');
	$('#ndt-overlay').css({
		width: $('body').width()+'px',
		height: $(document).height()+'px'
	});

});

$(document).ready(function(){if( $.browser.msie && $.browser.version < 7 ){$("img.checkIE6").each(function(){$(this).attr("src", $(this).attr("src").replace(".png", "_ie6.gif"));});$(".box-content").css("width", "991px")}});