
			/*NOTÍCIAS*/
			function  SlideShowNoticia()
			{
			 if (jQuery("#pai").length > 0)
			   {
				   jQuery('#pai').show(); 
				   jQuery('#pai').cycle({  
				   fx:     'fade',  
				   timeout: 10000,  
				   speed: 1000,
				   pause:1
				   });  
			  } 
			}			
						
			/*MACAÉ MÍDIA*/
			function  SlideShowMacaeMidia()
			{
			  if (jQuery("#macae_midia").length > 0)
			   {
				  jQuery('#macae_midia').show(); 
				  jQuery('#macae_midia').cycle({  
					fx:    'scrollUp', 
					sync:   0, 
			       	timeout: 0,  
					speed: 1000,
					next: '#proximo',  
					prev: '#anterior',
					pause:1
				   });  
			   }
			} 	
			
			/*BANNER CENTRAL*/
			function  SlideShowBanner()
			{
			  if (jQuery("#banner_conteudo").length > 0)
			   {
			   jQuery('#banner_conteudo').show(); 
			   jQuery('#banner_conteudo').cycle({  
			   fx:     'fade',  
			   timeout: 8000,  
			   speed: 1000,  
			   next:   '.next',  
			   prev:   '.previous',  
			   pager: '.numeros',
			   pause: 1
			   });  
			   }
			}		
			

