$(document).ready(function() {

	$("#main-menu .menuDepth0 li").hover(
		function () {
			$(this).find(".menuDepth1").show();
		},
		function () {
			$(this).find(".menuDepth1").hide();
		}
	);

	$('#news-ticker').vTicker({
		speed: 500,
		pause: 3000,
		showItems: 1,
		animation: 'fade',
		mousePause: false,
		height: 0,
		direction: 'up'
	});

	// customisation des title d'images
	/*$("img[title]").qtip({
		position: {
			target: "mouse",
			adjust: {
				mouse: true,
				x: 20,
				y: 20
			}
		},
		hide: {
			fixed: true
		},
		style: {
      classes: 'ui-tooltip-rounded'
   }
	});*/

	$(".openinpopup").fancybox();

	$("#widget-static-telechargement").append('<img src="/fr/img/telechargement.png" style="display: block; position: absolute; z-index: 99; right: 5px; top: -10px;" />');
	$("#widget-static-reseau").append('<img src="/fr/img/france.png" style="display: block; position: absolute; z-index: 99; right: 5px; top: -10px;" />');

});

