function checkKey(e){
     if (e.keyCode == 37 && e.ctrlKey) {
        if ($('.post .top .nav .previous a').attr('href')) {
             top.location=$('.post .top .nav .previous a').attr('href');
        }
     } else if (e.keyCode == 39 && e.ctrlKey) {
        if ($('.post .top .nav .next a').attr('href')) {
            top.location=$('.post .top .nav .next a').attr('href');
        }
     }
}

$(document).ready( function() {
    if ($.browser.mozilla) {
        $(document).keypress (checkKey);
    } else {
        $(document).keydown (checkKey);
    }
});
