// JavaScript Document

if (self!=top) top.location=self.location;

// JavaScript Document

var motcle='mot(s) clé(s)';

$(document).ready(function()
	{
	$('#Recherche form p input').val(motcle);
	$('#Recherche form p input').focus( function()
		{
		if ($('#Recherche form p input').val()==motcle)	$('#Recherche form p input').val('');
		$(this).addClass('Focus');
		} );

	$('#Recherche form p input').blur( function()
		{
		if ($('#Recherche form p input').val()=='')	$('#Recherche form p input').val(motcle);
		$(this).removeClass('Focus');
		} );

	$('.HighlightForm').focus( function() { $(this).addClass('Focus'); } );
	$('.HighlightForm').blur( function() { $(this).removeClass('Focus'); } );

	initMenu();

	} );

// ********************* MENU ********************* //
function initMenu()
{
//alert('initMenu();');
$('#MenuHaut dt').mouseover(function()
	{
	$('#MenuHaut dd').css('display','none');
	$(this).parent().find("dd").css('display','block');
	} );
$('#MenuHaut dd').mouseover(function()
	{
	$(this).parent().find("dd").stop(true,true).fadeIn(100);
	$(this).parent().find("dt").addClass('Actif');
	} );
$('#MenuHaut dd').mouseout(function()
	{
	$(this).parent().parent().find("dd").stop(true,true).delay(200).fadeOut(300);
	$(this).parent().parent().find("dt").delay(300).removeClass('Actif');
	} );
}
// *********************************************** //



function CreateBookmarkLink(title)
{
if (window.sidebar)			{ window.sidebar.addPanel(title,document.location.href,""); }
else if (window.external)	{ window.external.AddFavorite(document.location.href,title); }
else if (window.opera && window.print) { return true; }
}



