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

$(function() {

	// Ouverture des liens externes et des popup dans une autre fenetre
	$("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;});
	});

	// Menu accordeon
	$("#commode").accordion({
		autoHeight: false,
    event: 'mouseover',
    active: '.actif',
    collapsible: true
	});

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

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