﻿$(function () {
    $('.flR a.minibutton').bind({
        click: function () {
            var buttonId = $(this).attr('id')
            if (buttonId != 'All') $(this).toggleClass('selected');
            window[buttonId + 'Click']();
            return false;
        }
    });
    $('#pageNumbers a').live(
        'click', function () {
            var buttonId = $(this).attr('id').substr(1);
            GoToPage(buttonId);
            return false;
        }
    );
    $('#previousPage a').bind(
    'click', function () {
        PreviousPage();
        this.blur();
        return false;
    }
    );
    $('#nextPage a').bind(
    'click', function () {
        NextPage();
        this.blur();
        return false;
    }
    );

    $('a[rel="external"]').live('click', function () { $(this).attr('target', 'externalLink'); return true });
});
