$(function() {
	$("#left-section a").hover(function() {
		var currentSection = $(this).attr("rel"),
			$currentLink = $("a." + currentSection);

		$currentLink.find("img.more").attr("src", "../images/bouton-plus-over.gif");
		$currentLink.toggleClass("hover");
	}, function() {
		var currentSection = $(this).attr("rel"),
			$currentLink = $("a." + currentSection);

		$currentLink.find("img.more").attr("src", "../images/bouton-plus.gif");
		$currentLink.toggleClass("hover");
	});

	$("a.products").hover(function() {
		var currentSection = $(this).attr("class").replace("products ", "");

		$("#left-section a[rel='" + currentSection + "']").toggleClass("hover");

		$(this).find("img.more").attr("src", "../images/bouton-plus-over.gif");
	}, function() {
		var currentSection = $(this).attr("class").replace("products ", "");

		$("#left-section a[rel='" + currentSection + "']").toggleClass("hover");

		$(this).find("img.more").attr("src", "../images/bouton-plus.gif");
	});
});
