$(function(){
	
	//corner
	if($.browser.msie && $.browser.version <= 8){
		$('.menu_li_a').corner("cc:#F2F2F2 6px");
		$('.sous_menu').corner("bottom tr cc:#F2F2F2 6px");
		$('#contenu').corner("top cc:#F2F2F2 6px");
		$('.bloc_activite_visuel').corner("top cc:#fff 6px");
	}
	
	
	//border sous menu
	$('.sous_menu ul li:last-child').css('border', '0');
	
	
	//sous menu
	$('.menu_sm').hover(
		function(){
			$(this).parent().find('.sous_menu').show();
		},
		function(){
			$(this).parent().find('.sous_menu').hide();
		}
	);
	
	$('.sous_menu').hover(
		function(){
			$(this).show();
			$(this).parent().addClass('hover');
		},
		function(){
			$(this).hide();
			$(this).parent().removeClass('hover');
		}
	);
	
	
	//footer ref
	$('.bloc_footer_ref:last').css('margin-right', '0');
	
	
});
