// JavaScript Document
jQuery(document).ready(function($){	

	//$('#super #wrapper .detalhe .content .texto ul li .box').fadeOut();	
if (($.browser.msie && $.browser.version != '6.0') || !$.browser.msie){
	
	$('#super #wrapper .detalhe .content .texto ul li').toggle(
		function(){		
			var box = $(this);				
			$('.box', box).fadeIn();			
		},
		function(){	
			var box = $(this);					
			$('.box', box).fadeOut();		
		}
	);	
	
}

	
	
});

