		var carrega = function (caminho,target){
		$('.col2').fadeOut(200, function(){
			$('.col2').html('');
			$('.col2').load('internas/' + caminho + '/' + target + '.php');
			$('.col2').fadeIn(200);
		//	console.log('internas/' + caminho + '/' + target + '.php')
		
		});
		
		
		
	}
		
$(document).ready (function (){

		$('#menuInterno').find('a').click(function(e){
				
				$('#menuInterno li').animate({
					width: '210'
				}, 200)
				
				$('#menuInterno').find('li').removeClass('ativo');
								
				
				$(this).parent().addClass('ativo');
				
				
				$(this).parent().animate({
					width: '220'
				}, 200)
				
				var caminho =  $(this).attr('rel');
				var target =  $(this).attr('href').slice(1);
				carrega(caminho,target);
				
				
		});	
	
});
