$(document).ready(function() {
	$('.slide').cycle({
		fx: 'fade',
		speed:  1500// choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	
	$("a[rel=example_group]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});
	
	$("#vermais").click(function() {
		$('.janela_menor').hide();
		
		$('.janela_maior').slideDown();
		return false;
	});
	
	$("#vermenos").click(function() {
		$('.janela_maior').slideUp();
		
		$('.janela_menor').slideDown();
		return false;
	});
});
