﻿
$(function () {
    $('.news h3 select').change(function () {
        var $this = $(this);
        var value = $this.val();
        var news = $this.parents('.news');
        news.find('div.feed').fadeOut('fast');
        news.find('div.feed[rss-title="' + value + '"]').delay(200).fadeIn('fast');
    });
});
