	/* --------------------------
		Homepage Axe
	-------------------------- */


He.Bootstrap('He.Components.HomePageAxe');

He.Components.HomePageAxe.Init = function()
{
	var list_gamme = $('#list_gamme');
	var ul = $('#list_gamme ul');

	ul.hide();
	list_gamme.css('height', '0px');
	
	
	if(jQuery.browser.msie && jQuery.browser.version == 7)
	{
		var open_height = '150px';
	}
	else
	{
		var open_height = '145px';
	}
	
	$('#show_list_trigger').click(function()
	{
		var obj = $(this);
		if(list_gamme.height() == 0)
		{
			obj.addClass('list');
			ul.fadeIn(He.Application.Config.Fade);
			list_gamme.stop().animate({height: open_height},{queue:false, duration:He.Application.Config.Duration, easing: 'easeOutCubic'});
		}
		else
		{
			obj.removeClass('list');
			ul.fadeOut(He.Application.Config.Fade);
			list_gamme.stop().animate({height:'0'},{queue:false, duration:He.Application.Config.Duration, easing: 'easeOutCubic'});
		}
	});
}
