// JavaScript Document
$(document).ready(function() {
	$('#separador-quote').cycle({
    fx: 'scrollLeft',
	speed:  5000,
	timeout:  13000 
});
	$('#preview-1 a img, #preview-2 a img, #preview-3 a img, #rodape a img').fadeTo("fast",0.70);
		//start the engine
		$('#preview-1 a img, #preview-2 a img, #preview-3 a img, #rodape a img').hover(function() {
		$(this).fadeTo("fast",1);
		},
		function () {
        $(this).fadeTo("fast",0.70);
      	});
		
	$('#rodape').fadeTo("fast",0.50);
		//start the engine
		$('#rodape').hover(function() {
		$(this).fadeTo("fast",1);
		},
		function () {
        $(this).fadeTo("fast",0.50);
      	});
 
 
		
	});	//end of page functions