var valor;

$(document).ready(function(){
	$("#box").easySlider({
		 continuous: false,
		 controlsShow: false,
		 prevId: 'prevBtn',
		 nextId: 'nextBtn',
		 maximo: '3',
		 speed: '200',
		 controlsBefore:"<p class='logo'>",
		 controlsAfter:"</p>"
	 }); 

	$('input:text').focus(function(){
		valor = $(this).val();
		$(this).attr('value','');
	});
	
	$('input:text').blur(function(){
		if($(this).val()==''){
			$(this).attr('value',valor);
		}
    });

	$('input:password').focus(function(){
		valor = $(this).val();
		$(this).attr('value','');
	});
	
	$('input:password').blur(function(){
		if($(this).val()==''){
			$(this).attr('value',valor);
		}
    });
	
	$('textarea').focus(function(){
		valor = $(this).val();
		$(this).attr('value','');
	});
	$('textarea').blur(function(){
		if($(this).val()==''){
			$(this).attr('value',valor);
		}
    });
	
	$("#destaques_pagina_principal").css('width','3500px');
	$("#destaques_view").css('width','1600px');
	
	$('#BTbuscar').click(function(){
		var buscar = $('#buscar').val();
		window.location = basepath+"principal/buscar/"+buscar+"/";
	});
});
