// Pour eviter d'etre coince dans un frame
if (window != top) top.location.href = location.href;

$(document).ready(function(){
// $(function() {

	// Ouverture des liens externes et des popup dans une autre fenÃªtre
	$("a[@href^='http']").each(function() {
		if(this.href.indexOf(location.hostname) == -1) {
			$(this).click(function(){window.open(this.href);return false;});
		}
	})
	$("a[rel='popup']").each(function() {
		$(this).click(function(){window.open(this.href);return false;});
	})

	// Focus sur la recherche
	$("#recherche input").focus();

	// Menu accordÃ©on
	$("#menuGeneral").accordion({
    active: '.actif',
		autoheight: true,
    event: 'mouseover',
    header: '.head',
		navigation: true,
    selectedClass: '.actif'
	});

	$('#menu').show('slow');
	
});