// JavaScript Document
						
	/*** slide banner ***/
	
	$(document).ready(function()
	{
		var Velocidade = 300;
		
		if(navigator.userAgent.indexOf('MSIE 6') != -1 || navigator.userAgent.indexOf('MSIE 7') != -1 || navigator.userAgent.indexOf('MSIE 8') != -1) 
		{
			Velocidade = 10;
		}
		//$('.legenda').css('opacity', 0.6);
		
		/*var show = $("#simpleshow").simpleshow({ speed:7000, pagination:'#pagination' });
		show.start();
		
		$("#pagination .goto").click(function()
		{
			show.goTo($(this).attr('href'));
			return false;
		});*/
		
		$('#simpleshow').cycle({
			timeout: 7000,
			speed: Velocidade,
			cleartype: 1,
			pager: '#pagination',
			fx: 'fade'
			
    	});
		
		/*** banner apoio ***/
		$('#banner_apoio').cycle({ fx: 'fade', timeout:7000 });
		
		/*** links imgs ***/
		jQuery('#mycarousel').jcarousel({
        	vertical: true,
        	scroll: 1
    	});
			
	});

   
										
