﻿(function($)
{
    $.fn.homePageCarouselLinks = function()
    {
        return this.each(function()
        {
            var link = $("a:first", this).attr("href");
            $(this).css({ cursor: 'pointer'});
            $(this).click(function()
            {
                window.location = link;
            });
        });
    }
})(jQuery);
