$(document).ready(function(){
$("#text-search").val("Buscar");
	var valor;
 $("input").click(function(){
	 if($(this).val() == "Buscar" || $(this).val() =="nome" || $(this).val() =="e-mail"){
		 valor = $(this).val();
		 $(this).val("");
	 }
 });
 	
 $("input").blur(function(){
 	if($(this).val()==""){
		$(this).val(valor);
	}
 });
 
 	$(document).ready(function(){
		$("#sliderJq").easySlider({
			auto: true,
			numeric: true,
			continuous: true
		});
	});
 
});

