$(document).ready(function() {
	$('a[rel^="externo"]').attr('target','_blank');
		
	$('.mais_imagens a').click(function() {
		trataIds = $(this).attr('rel').replace('ref_projeto_', '');
		idGrupo   = trataIds.split('_')[0];
		idProjeto = trataIds.split('_')[1];
		
		$('#grupoprojeto_'+idGrupo+' .mais_imagens a').attr('class', false);
		$(this).attr('class', 'ativo');
		
		$('#imgprojeto_'+idGrupo).attr('src', $(this).attr('href'));
		
		if($('#tit_projeto_'+idGrupo+'_'+idProjeto).attr('class').indexOf('oculta')>0) {
			$('#grupoprojeto_'+idGrupo+' .titulo').attr('class', 'titulo oculta');
			$('#grupoprojeto_'+idGrupo+' .descricao').attr('class', 'descricao oculta');
			
			$('#tit_projeto_'+idGrupo+'_'+idProjeto).attr('class', 'titulo');
			$('#desc_projeto_'+idGrupo+'_'+idProjeto).attr('class', 'descricao');
		}
		
		return false;
	});
	
	$('.trocaExplic').click(function() {
		$('.trocaExplic').attr('class', 'trocaExplic');
		$(this).attr('class', 'trocaExplic ativo');
		
		$('.pq_istrata').css('display','none');
		$('#'+$(this).attr('rel')).css('display','block');
	});
	
	$('a.missao, a.visao, a.valores').hover(function(event) {
		$('#'+$(this).attr('class')).css('display', 'block');
	/*	$('#'+$(this).attr('class')).css('left', ($(this).attr('offsetLeft') - $('#'+$(this).attr('class')).attr('offsetWidth') + $(this).attr('offsetWidth')));
		$('#'+$(this).attr('class')).css('top', $(this).attr('offsetTop')-($('#'+$(this).attr('class')).attr('offsetHeight')));*/
	},function(event) {
		$('#'+$(this).attr('class')).css('display', 'none');
	});
});