$(document).ready(function(){
	$('#header h1 a').text(' ');
	$('div.content > a').text(' ');
	
	var list = 1;
	$('#header ul li').each(function(){
		$(this).addClass('list'+list);
		list++;
	});

	var tits = 1;
	$('#nav h2 a').each(function(){
		if(tits == 1){
			$(this).html('Apple <span>Development</span>');
		}else if(tits == 2){
			$(this).html('Cloud <span>Computing</span>');
		}else if(tits == 3){
			$(this).html('Provedores <span>de Internet</span>');
		}else{
			$(this).html('Projetos de <span>Telefonia IP</span>');		
		}
		tits++;
	});
	
	var pars = 1;
	$('#nav li p').each(function(){
		$(this).addClass('p'+pars);
		pars++;
	});
});
