/* 

    Document   : funcoes.js
    Created on : 09/03/2009, 16:07:15
    Author     : Vagner - Acao Direta Web Studio
    Description: Funcoes - Content Construtora ADeschamps
	
*/

$(document).ready(function(){

	// Link Externo - não use target="_blank" (Y)
	$("a[rel*=externo]").attr({ target: "_blank" });
	
	$(function() {
		setTimeout(function() {
		$('div#content_left div#slide img:first').fadeIn(2000);
		$('div#content_left div#slide ').cycle();
		}, 2500);
	});
	
});




