
$(document).ready(function(){
	readyApply()
})

function readyApply()
{
	$('.produitsnav a.cat')
		.unbind('click')
		.click(function(){
			return catBandeauSelect(this);
		})
		;
	$('.cat_level li a')
		.unbind('click')
		.click(function(){
			return catMenuSelect(this);
		})
		;
}

function catBandeauSelect(lnk)
{
	$(lnk).blur();
	$(lnk).parent('li').addClass('sel').siblings('li').removeClass('sel');
	$('#main')
		.html('<p class="loading">Chargement en cours...</p>')
		.load($(lnk).attr('href')+' #main>*', function(){ readyApply() }) ;
	return false;
}

function catMenuSelect(lnk)
{
	$(lnk).blur();
	$(lnk).parent('li').addClass('sel').siblings('li').removeClass('sel');
	var dest = $(lnk).parents('.cat_level:first');
	dest.find('.cat_content').remove();
	dest.find('.cat_level:first').hide('slow');
	$('.loading').remove();
	dest.append('<p class="loading">Chargement en cours...</p>');
	dest.load($(lnk).attr('href')+' #'+$(dest).attr('id')+'>*', function(){ $('.cat_content').hide(); $('.cat_content').slideDown('slow'); readyApply() }) ;
	return false;
}