$(document).ready(function() {
	
	// Slideshow	
	$('#slideshow').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		speed:  1000, 
    	timeout: 4000
	});
	/////////////////////////////
	
	// Galeria SexyLightbox
	SexyLightbox.initialize({color:'blanco', dir: baseUrl + '/default/images/layout/sexyimages'});
	//////////////////////////
			
	// Captify
	$('img.captify').captify({});
	/////////////////////////
	
	// jCarousel
	$('#lista_fotos').jcarousel();
	/////////////////////////
	
	// Menu
	$(".nav1 li").hover(function(){
        $(this).find("ul:first").show();
    }, function(){
        $(this).find("ul:first").hide();        
    });
	/////////////////////////
	
	// busca banner
	buscaBanner = function() {
		setInterval(function(){
			$.ajax({
				url: baseUrl + '/ajax/banner',
				dataType: 'html',
				type: 'post',
				data: {ajax: 'sim'},
				
				beforeSend: function() {
					
					$('#loader').show();
				},
				complete: function() {
					$('#loader').hide();
				},
				success: function(data) {
					$('#lista_banner').html(data);
					if ($.browser.opera) {
						$('#lista_banner *').show();
					}
				},
				error: function(xhr, er) {
					//alert('Error ' + xhr.status + ' - ' + xhr.statusText);
				}
			});
		}, 10000);
	}
	////////////////////////
	
	$("a[rel^='prettyPhoto']").prettyPhoto({});
	
}); // Fim do ready
