jQuery(function(){
	$("#tout li:not(.selected)").each(function(){
	$('#'+$(this).children('a').attr('rel')).hide();
});

$("#tout li a").hover(
		function(){
		$(this).parent().addClass('selected').siblings().removeClass('selected');
		divID = $(this).attr('rel');
		if(divID != $("#tout div:visible").attr('id')){
		$("#tout div:visible").hide();
		$('#'+$(this).attr('rel')).show();     
	} 
},
function(){
}
);
});
