$(document).ready(function() {

    $("a.fancy_img_tbl").fancybox(
    {
        'centerOnScroll' : false,
        'type'           : 'image',
        'titleShow'      : true,
        'titleFormat'    : formatTitle
    });

    $("a.search_help").fancybox(
    {
        'type'    : 'iframe',
        'width'   : 800,
        'height'  : 600
    });
    
    $("a.send_letter").fancybox(
    {
        'type'    : 'iframe',
        'width'   : 400,
        'height'  : 250
    });

    function formatTitle(title) {
        return '<span id="fancybox-title-over">'+title+'</span>';
    }
});
