$(function(){
	
	
	//menu gauche	
	$('#td_menu ul li a[href="#"]').click(function(){
		return false;
	});
	
	
	$('#td_menu ul li:eq(1)').hover(
		function(){	$(this).addClass('hover');		},
		function(){	$(this).removeClass('hover');	}
	);
	
	
	$('#li_sm_presentation').hover(
		function(){	$('#sm_presentation').fadeIn(100);	},
		function(){	$('#sm_presentation').fadeOut(100);	}
	);
	
	
	
	//menu haut
	$('#btn_marque, #btn_collection, #btn_categorie').click(function(){
		return false;
	});
	
	$('#div_marque, #div_collection, #div_categorie').hover(
		function(){	
			$(this).find('.liste_deroulante').fadeIn(100);		
			$(this).find('.liste_deroulante_scroll').jScrollPane({
				showArrows: true,
				verticalDragMinHeight: 33,
				verticalDragMaxHeight: 33
			});
		},
		function(){	
			$(this).find('.liste_deroulante').fadeOut(100);		
		}
	);
	
	
	
	//select client
	$('#commercial_client').change(function(){
		$(this).parent().submit();
	});
	
	
	
});
