﻿/// <reference path="jquery-1.4.2.js"/>

$.fn.headlines = function (options) {
    this.each(function () {
        var elements = $("div", this);
        var curIndex = 0;

        var displayHeadlineFunc = function (currentIndex) {
            $(elements).hide();
            $(elements[currentIndex]).show();
        };

        
    });
};
