$(document).ready(function(){
    $("a[href$=print]").click(function(e){
        e.preventDefault();
        window.frames['print_window'].location = $(this).attr('href');
    });
    
    here = document.location.href;
    if(here.indexOf("#print")!=-1){
        $("#left, form, .icons, #right, #comment_help").hide();
        $("#content").css({'margin-left':0});
        $("body").css('background-image', 'none');
        $("#print_window").hide();
        window.print();
    }
});
