/*FUNÇÃO SLIDE DESTAQUES*/
$(document).ready(function() {
						   
	//COLORBOX (JANELA PORTIFOLIO)
	if(navigator.appName.indexOf('Internet Explorer')>0){
		$(".tips").colorbox({width:"945px", height:"610px", iframe:true, scrolling:false});	
	}else{
		$(".tips").colorbox({width:"945px", height:"540px", iframe:true, scrolling:false});	
	}
	
	
	
	
	$(".tips2").colorbox({width:"50%", inline:true, href:"#d2"});
	
	
	
	
	//* DESTAQUE */
		var legenda = $("#legenda");
		var legenda2 = $("#l2");
		
		legenda.css("opacity", 0.8);
		
		$("#imagens-slide").cycle({
			fx: "scrollHorz",
			speed: 900,
			timeout: 4500,
			next: "#btNext",
			prev: "#btBack",
			pause: 1,
			before: antes,
			after: depois
		});
		
		function antes() {
			legenda.slideUp(400);
			legenda2.empty();
		}
		
		function depois() {
			legenda2.html("<a href='" + this.href + "' target='"+this.target+"'>" + $(this).attr("rel") + "</a>");
			legenda.slideDown(400);
		}
		
		
		/*TOOLTIPS*/
		
		
		$('a.tips').tooltip({ 
			track: true, 
			delay: 0, 
			showURL: false, 
			showBody: " | ", 
			fade: 250 
		});
		
		$('.thickbox').tooltip({ 
			track: true, 
			delay: 0, 
			showURL: false, 
			showBody: " | ", 
			fade: 250 
		});
		
	
});
