/**
 * TikiCMS
 * Copyright (C) 2009, Tiki Web Inteligente Ltda.
 * @requires jQuery 1.3.2 or latter
 *
 * $Id: application_controller_perguntas_frequentes.js 28 2011-03-10 17:24:39Z caio $
 */

Application.Controller.PerguntasFrequentes = (function() {

    function index() {
        $('input[name=s]').focus();
    }

    return {
        'index': index
    }
})();

