// JavaScript Document   SCRIPTS GENERALES PARA CUALQUIER PAGINA
$(document).ready(function() {
		$(".suginput").focus(function(){
			$(this).attr("value","");
			$(this).removeAttr("class");
		});
		$(".sugclave").focus(function(){
			$(this).removeAttr("class");
		});
});

