// Cria as noticias que trocam
$('#noticias_carousel_noticias').cycle('fade');

$(document).ready(function() {
	/**
	 * Remove o nome da pessoa ao clicar com o mouse. Na
	 * navegação. Para não haver a necessidade de apagar.
	 *
	 */
	var nome = $('#navegacao_news input').attr('value');
	$('#navegacao_news input:eq(0)')
	.val(nome)
		.focus(function(){
			if ($(this).val() == nome){
				$(this).css('color', '').val('');
			}
		}).blur(function(){
			if ($(this).val() == '' ){
				$(this).val(nome);
			}
		});
		
	/**
	 * Remove o email da pessoa ao clicar com o mouse. Na
	 * navegação.  Para não haver a necessidade de apagar.
	 *
	 */
	var no	
	var email = $('#navegacao_news input:eq(1)').attr('value');
	$('#navegacao_news input:eq(1)')
	.val(email)
		.focus(function(){
			if ($(this).val() == email){
				$(this).css('color', '').val('');
			}
		}).blur(function(){
			if ($(this).val() == '' ){
				$(this).val(email);
			}
		});
				
});

