
$(document).ready(function(){
	// + categories
	$('#navMore a').click(function(event){
		var textMore = $(this).text();
		
		if(textMore == '+'){ $(this).text('-'); } else { $(this).text('+'); }
		
		event.preventDefault();
		$('#navCategories').slideToggle();
	});
	// end;

	// coment page					   
	var txtOpEmail = '<a href="#">Adicionar e-mail para contato?</a>';
	$('p#mailBox input, p#mailBox label').hide();
	$('p#mailBox').append(txtOpEmail);
	$('p#mailBox a').click(function(){		
		$(this).hide();
		$('p#mailBox input, p#mailBox label').show();			
		return false;
	});
	// end;
	
	// shortUrl
	$('.shortUrl a').click(function(event){
		event.preventDefault();
		$(this).next('div').toggle();	
	});
	
	$('.shortUrl input').click(function(){
		$(this).select();
	});
	// end;
	
	// portfolio
	$('#portfolio .imgBox').hover(function(){
		$(this).find('img').attr('title','');
		$(this).find('img').attr('alt','');
		$(this).append('<span class="seeBox"></span><span class="seeText">Ver o site</span>');
		}, function(){
		$('.seeBox, .seeText').remove();
	});
	// end;
});	