jQuery(document).ready(function(){

	//menu des saisons
	//jQuery("#drop_list_more").click(function(){
		jQuery("#drop_list_more").toggle(function(){
			jQuery("#drop_list_content").show();
			jQuery("#drop_list_more").attr('class','drop_list_arrow_previous');
		}, function(){
			jQuery("#drop_list_content").hide();
			jQuery("#drop_list_more").attr('class','drop_list_arrow_next');
		});
		
	//});

	//home slideorion
	jQuery('#slidorion').slidorion({
		autoPlay:false
	});

	//tab home
	jQuery( "#tabs" ).tabs({
		ajaxOptions: {
			error: function( xhr, status, index, anchor ) {
				jQuery( anchor.hash ).html(
					"Couldn't load this tab. We'll try to fix this as soon as possible. " );
			}
		}
	});
	
	
	
});


