/**
 * corpsalespage extends page.
 *
 * @author geraldyeo
 */
var faqPage = function(opts){
    var that = htmlPage(opts), super_init = that.init;
    
    
    // override public init
    var init = function(){
        super_init.apply(that);
        
        $(".accordion").accordion();
        
        $("a[rel=bookmark]").click(function(e){
            // opens the faq
            var anchor = $(this).attr("href");
            $("dt"+anchor).click();
        });
    };
    that.init = init;
    
    return that;
};
