$(document).ready(function($){	

if (($.browser.msie && $.browser.version != '6.0') || !$.browser.msie){
	//action for balls of header
	$('#details #conteudo #products .miolo ul li.imagem').mouseover(
		function(e) {			
		//var id = $(this).attr('class');
		$(this).find('a').stop()
			.animate({
				opacity:'.1'		
			},{queue:false, duration:800}
		);
	});
	
	$('#details #conteudo #products .miolo ul li.imagem').mouseout(
		function(e) {		
		
		$(this).find('a').stop()
			.animate({
				opacity:'1'
			}, {queue:false, duration:800});		
	});		
	}
	
});



