$(function() {
    // open enlarged press image in lightbox
    $('a.viewLarger').bind("click",function(e) {
        LANE.lbForm.launch(this.href,{width: '340', height: '590'});
        e.preventDefault();
    });
    // open links that contain pdfs in a new window
    $("a[href*=.pdf]").bind("click",function(e) {
        window.open(this.href);
        e.preventDefault();
    });
});