$(document).ready( function(){
	var busca = $("#busca");
	var buscaDefault = "Palavra-chave"; //Valor padrão do box;

	var nome = $("#nome");
	var nomeDefault = "Seu Nome"; //Valor padrão do box;
	
	var email = $("#email");
	var emailDefault = "Seu e-mail"; //Valor padrão do box;

	busca.focus(function(){
		if( $(this).attr("value") == buscaDefault ) $(this).attr("value", "");
	});
	busca.blur(function(){
		if($(this).attr("value") == "") $(this).attr("value", buscaDefault);
	});

	nome.focus(function(){
		if( $(this).attr("value") == nomeDefault ) $(this).attr("value", "");
	});
	nome.blur(function(){
		if($(this).attr("value") == "") $(this).attr("value", nomeDefault);
	});

	email.focus(function(){
		if( $(this).attr("value") == emailDefault ) $(this).attr("value", "");
	});
	email.blur(function(){
		if($(this).attr("value") == "") $(this).attr("value", emailDefault);
	});
	
	$('#my-dropdown').sSelect();
});


