function hide(bloc)
	{
	document.getElementById(bloc).style.display = "none";
	}

function show(bloc)
	{
	document.getElementById(bloc).style.display = "block";
	}


$(document).ready(function(){
	if($.browser.msie && $.browser.version=="6.0"){	
		$('#container ul li').hover( function (){
			/*$(this).children('ul').show ();*/
			$(this).parent().css('background','url(../images/tgvetvous/fd_tgvvous_actif.gif) top right no-repeat');
			$(this).parent().css('color','#fff');
			$(this).children('ul').addClass('tgvetvous').css('display','block');	
			$(this).children('ul').addClass('tgvetvous').css('position','absolute');
			$(this).children('ul').addClass('tgvetvous').css('z-index','100');	
		}, function () {
			$(this).children('ul').hide ();
			/*$(this).children('ul').css('display','none');	*/
		});
	}
});
