// JavaScript Document
(jQuery.noConflict())(function($) {	
						   
	$("li.menu").hover(function() {
		$(this).addClass('menu-over');
	}, function() {
		$(this).removeClass('menu-over');
	});	
	
	$("li.menulast").hover(function() {
		$(this).addClass('menu-over');
	}, function() {
		$(this).removeClass('menu-over');
	});	
						   
	//Image swap for the top menu
	$("#produits").hover(function() {
		$(this).attr("src","images/home/thumbs-produit-over.jpg");
	}, function() {
		$(this).attr("src","images/home/thumbs-produit.jpg");
	});
	/*
	$("#inspirez").hover(function() {
		$(this).attr("src","images/home/thumbs-inspirez-over.jpg");
	}, function() {
		$(this).attr("src","images/home/thumbs-inspirez.jpg");
	});
	*/
	$("#points").hover(function() {
		$(this).attr("src","images/home/thumbs-pts-vente-over.jpg");
	}, function() {
		$(this).attr("src","images/home/thumbs-pts-vente.jpg");
	});
});



