// Custom jquery calls
$(function () {

    // Loads the news from bus.lsu.edu and copies it to #news list
    // This replaces any news with the current news from bus.lsu.edu
    // To edit default news, edit list items under site.master
    $('#news').load('news_feed.aspx #frontcontent > table > tbody > tr:last-child > td:last-child > table > tbody > tr:first-child > td > table > tbody > tr:not(:last-child) .rightlinkE', function () {
        $(this).children('a').wrap('<li>');
    });

    // SEARCH FUNCTIONS
    $('.closeSearch').click(function () {
        $('#searchBar').slideUp();
    });

    $('.openSearch').click(function () {
        $('#searchBar').slideDown();

        return false;
    });

    $('#searchBar').hide();
    $('.closeSearch').show();
});
