// JavaScript Document
$(document).ready(function(){
	$('.bannerroda').before('<div id="nav">').cycle({ 
		fx:     'fade', 
		speed:  'fast', 
		timeout: 15000, 
		pager:  '#nav' 
	});
	$('.boxtenda2').cycle({ 
		fx:     'fade', 
		speed:  'fast', 
		timeout: 5000
		
	});
	$('.boxparceiro').cycle({ 
		fx:     'fade', 
		speed:  'fast', 
		timeout: 5000
		
	});
		
	//TABS
	$('#fichaLancamento').tabs({
		fxSlide:	true,
		fxFade:		true,
		fxSpeed:	'fast'
	});

});

$(document).ready(function(){
    $('#corpo h1').flash(
        { 
            src: 'itc_century.swf', 
            flashvars: { 
                css: [
                    '* { color: #005A8B; }',
                ].join(' ')
            },
			wmode: "transparent"
        },
		
        { version: 7 },
        function(htmlOptions) {
            htmlOptions.flashvars.txt = this.innerHTML;
            this.innerHTML = '<div>'+this.innerHTML+'</div>';
            var $alt = $(this.firstChild);
            htmlOptions.height = 40;
            htmlOptions.width = 300;
            $alt.addClass('alt');
            $(this)
                .addClass('.h1flash')
                .prepend($.fn.flash.transform(htmlOptions));						
        }
    );
});


