// JavaScript Document
jQuery(document).ready(function($) {
    // $() will work as an alias for jQuery() inside of this function
	$('#trocafotos').cycle({
    	fx:     'fade', 
    	timeout: 4500
	});
});