Cufon.replace('.museo, #menu-informacoes a');

	$(document).ready(function() {
		// Isso faz o formulário trocar a cor da fonte quando preenchido
	 
		$('.caixa').each(function() {
			var default_value = this.value;
			$(this).focus(function() {
				if(this.value == default_value) {
					this.value = '';
					$(this).css('color', '#757b8e');
				}
			});
			$(this).blur(function() {
				if(this.value == '') {
					$(this).css('color', '#c6c9d0');
					this.value = default_value;
				}
			});
		});
	});

function enviardados(){

if (document.dados.email.value=="Digite seu endereço de e-mail")
	{
 		alert( "Preencha o seu e-mail corretamente" );
 		document.dados.email.focus();
 		return false;
 	}

return true;
}		

$(document).ready(function() {
	// Isso faz o formulário trocar a cor da fonte quando preenchido
 
	$('#search').each(function() {
		var default_value = this.value;
		$(this).focus(function() {
			if(this.value == default_value) {
				this.value = '';
					$(this).css('background-image', 'url(http://struttertshirts.com.br/novo/wp-content/themes/strutter/imagens/backgrounds/background-search-texto.gif)');						
					$(this).css('background-repeat', 'no-repeat');											
					$(this).css('background-position', '15px -110px');
			}
		});
		$(this).blur(function() {
			if(this.value == '') {
				$(this).css('background-image', 'url(http://struttertshirts.com.br/novo/wp-content/themes/strutter/imagens/backgrounds/background-search-texto.gif)');						
				$(this).css('background-repeat', 'no-repeat');											
				$(this).css('background-position', '15px 10px');
				this.value = default_value;
			}
		});
	});
});
