$('document').ready(function(){
	$(".lavaLamp").lavaLamp({ fx: "backout", speed: 700 });
    
    $('#fullbanner').html('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="980" height="290"><param name="movie" value="/theme/mosaico/img/banner.swf" ><param name="quality" value="high"><param name="wmode" value="transparent"><embed src="/theme/mosaico/img/banner.swf" width="980" height="290" quality="high" pluginspage="https://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent"></embed></object>');
    
    theRotator();
	$('div.rotator').fadeIn(1000);
    $('div.rotator ul li').fadeIn(1000);
    
    setTimeout(function(){
    	$('#flashMessage').fadeOut('slow');
    }, 4000);
    
    Galleria.loadTheme('/js/includes/galleria.classic.min.js');
});

var contato = {
	seleciona:function(valor){
		$('#para').val(valor);
        $('#area-select strong').html(valor);
        $('#area').animate({
            height: '5px'
        }, 500);
	}
};

function selV(ident,val,url){
	$('#'+ident).val(val);
}

function filtrarEventos(url){
	window.location.href='/eventos/'+url+'/mes:'+$('#mes').val()+'/ano:'+$('#ano').val();
}

function theRotator(){
	$('div.rotator ul li').css({opacity: 0.0});
	$('div.rotator ul li:first').css({opacity: 1.0});	
	setInterval('rotate()',6000);	
}

function rotate(){
	var current = ($('div.rotator ul li.show')?  $('div.rotator ul li.show') : $('div.rotator ul li:first'));
    if ( current.length == 0 ) current = $('div.rotator ul li:first');
	var next = ((current.next().length) ? ((current.next().hasClass('show')) ? $('div.rotator ul li:first') :current.next()) : $('div.rotator ul li:first'));

	next.css({opacity: 0.0})
	.addClass('show')
	.animate({opacity: 1.0}, 1000);

	current.animate({opacity: 0.0}, 1000)
	.removeClass('show');	
};	

function mostrarPortfolio(id){
	var dialog = $('#dialogholder');
	$.ajax({
		url: '/portfolios/detalhe/' + id, 
		success: function(data){
			$(dialog).hide();
			$(dialog).html(data);
			$(dialog).dialog({
				title: $('#portfolio-titulo').text(),
				resizable: false,
				width: 980,
				modal: true,
				show: 'fade',
				hide: 'fade'
			});
			$('#imagensGaleria').galleria({
				width: 960,
				height: 600
			});
		}
	});
}
