// JavaScript Document

///////////////////// AFFICHAGE DE LA POPUP SUR LA PAGE D'ACCUEIL ////////////////////////////////

function openPub()
{
	var filter = document.getElementById('filter');
	var pop = document.getElementById('pop');
		if (pop) {
			filter.style.display = 'block';
			pop.style.display = 'block';};
}

function fermPub() {
	document.getElementById('filter').style.display = 'none';
	document.getElementById('pop').style.display = 'none';
	}
	
///////////////////// MENU DEROULANT //////////////////////////////////////////////////////////////
/*
var obj = null;

function checkHover() {
	if (obj) {
		obj.find('ul').fadeOut('fast');	
	} //if
} //checkHover


jQuery.noConflict();
jQuery(function($) {
    // run the code in the markup!
    $('#menuAcc > li').hover(function() {
		if (obj) {
			obj.find('ul').fadeOut('slow');
			obj = null;
		} //if
		
		$(this).find('ul').fadeIn('slow');
	}, function() {
		obj = $(this);
		setTimeout(
			"checkHover()",
			400); // si vous souhaitez retarder la disparition, c'est ici
    });
});*/

/*$(document).ready(function() {
	$('#menuAcc > li').hover(function() {
		if (obj) {
			obj.find('ul').slideUp('fast');
			obj = null;
		} //if
		
		$(this).find('ul').slideDown('fast');
	}, function() {
		obj = $(this);
		setTimeout(
			"checkHover()",
			0); // si vous souhaitez retarder la disparition, c'est ici
	});
});*/
