﻿/* News/Events Teaser List JS */

Volvo.CWP.TeaserList = function(id) {
    this.container = document.getElementById(id);
    this.init();
};

Volvo.CWP.TeaserList.prototype.init = function() {
    var ul = this.container.getElementsByTagName("ul")[0];
    this.accordion = new Volvo.CWP.Accordion(ul);
};