$(document).ready(function(){
	//Menu déroulant
	$('ul.menu').menuBox();
	
	//Lien pour nouvelle page
	$('a[class^="_blank"]').click(function(){
		window.open(this.href, '_blank');
		return false;
    });
	
	//Liste déroulante custom (sauf IE ahah!)
	if( !$.browser.msie ){
		$('.liste').sSelect({ddMaxHeight: '120px' });
	}
	
	//Valide le formulaire de recherche sous IE avec entrée (13)
	if( $.browser.msie && ($('#recherche').length > 0) ){
		
		$('#recherche').keypress(function(event){
			if( event.which == 13 ){
				$(this).parents('form').submit();
			}
		});
	}
	
	//Accordeon catalogue produits
	if ($("#liste-all-articles").length >0){
		$("#liste-all-articles").accordion({
			autoHeight: false, 
			active : false,
			collapsible: true
		});
	}
});
