$(document).ready(function() {
	$('#carousel').cycle({
		fx:			'fade',
		speed:		1000,
		timeout:	4000,
		pause:		1,
		next:		'#panel-next',
		prev:		'#panel-prev'
	});

	$('a.modal').fancybox({
		'hideOnContentClick': false
	});

	/*
	 * Slideshow da pagina inicial
	 */
	$('#slideshow').cycle({
	    fx:     "fade",
	    speed:  "slow",
	    timeout: 6000,
	    pager:  "#panelBottom div.thumbs",
	    pagerAnchorBuilder: function(idx, slide) {
			return $('.thumbs a:nth-child('+ (idx+1) +')');
		}
	 });

});



