// URL BASE

/*var URL_BASE = location.protocol + '//' + location.host + '/';
		if(location.host == 'www'){
			var pos = location.pathname.indexOf('/', 1);
			URL_BASE += location.pathname.substr(1, pos);
		}else{
			//URL_BASE += "aprovacao/";
}*/

// TARGET VÁLIDO

$('a[rel=external]').click(function () {
      window.open($(this).attr('href'));
});

$(document).ready(function() {
	$('div.try:eq(1)> div:gt(0)').hide(); 
	$('div.try:eq(1)> h3').click(function() {
		$(this).next('div:hidden').slideDown('fast')
		.siblings('div:visible').slideUp('fast');
	});
});

