$(document).ready(
    function()
    {

        $('a').click(
            function()
            {
                if ($(this).parents('.pagination').length)return true;
                  top.location.href=$(this).attr('href');
            }
        )

    }
);
