// JavaScript Document
$(document).ready(function () {
		$(".words").cycle({
		random: 1,
		timeout: 7000,
		fx:'scrollLeft',
		speed: 100
		});
			function onAfter(curr, next, opts) {
    		var index = $(this).parent().children().index(this);
    		$('#prev')[index == 0 ? 'hide' : 'show']();
    		$('#next')[index == opts.slideCount - 1 ? 'hide' : 'show']();
			}				
				$('#project-gallery').cycle({ 
				fx: 'fade', 
				speed: 'normal', 
				timeout: 6000, 
				next: '#next, #project-gallery',
				prev: '#prev',
				after: onAfter,
				pause: 'mouseover'
				/*autostop: 1, 
				end:      function() {  
				$("#gallery-thumbs").slideToggle("fast");  
				}  */
			});
	});

$(document).ready(function () {
		$('#creditos ul').hoverAccordion({
			speed: 'fast',
			activateitem: 'false',
			active: '0',
			hover: 'current',
			opened: 'current',
			keepheight: 'false',
			header: 'titulo'
			});
	});

$(document).ready(function () {
		$("#gallery-thumbs").hide();
		$(".navigation").hover(function () {
		$("#gallery-thumbs").show("fast");
	});
});