function trocaTexto(id, texto) {
	$('#' + id).focus(function() { if($(this).attr('value') == texto) { $(this).attr('value', ''); } });
	$('#' + id).focusout(function() { if($(this).attr('value') == "") { $(this).attr('value', texto); } });
}
$(document).ready(function () {
	$('.side-box h3').click(function () {
		$(this).toggleClass("fechado");	
		$(this).next('.desc').slideToggle(200);
	});
	trocaTexto('s', 'DIGITE AQUI');
	
	$('input[type=radio]').customInput();
});
