$(document).ready(function() {
	$(".mainMenu").find("a").mouseover(function() {
		$(this).fadeTo("slow",0.5);
	}).mouseout(function() {
		$(this).fadeTo("slow",1);
	});
});

//$(document).everyTime(20000,RandomAnnonceur);



