//<![CDATA[

$(document).ready(function(){

	$('.categoria_produto a').toggle(
		
		
			function(){
				if($(this).attr('rel') == 'pdf')
				{
					window.open(this);
				}
				else
				{
					$('#'+$(this).attr('rel')).show();
				}
				
			},
			function(){
				if($(this).attr('rel') == 'pdf')
				{
					window.open(this);
				}
				else
				{
					$('#'+$(this).attr('rel')).hide();
				}
			}
	);
	
/*
	$('.categoria_produto').click(function(){
		alert($(this).id);
		//$(this).toggle();
		
	});
	*/
	
});

//]]>