
/**
 * Onload
 */

jQuery(document).ready(function()
{
    jQuery('a[rel="external"], a[href^="http://"], a[href^="/pdf"]').not('.map').click(function()
    {
        window.open(jQuery(this).attr('href'));
        return false;
    });

    jQuery('a.iframe').fancybox({
        'width' : 600,
        'height' : 420,
        'autoScale' : false,
        'centerOnScroll' : true,
        'overlayOpacity' : 0.85,
        'overlayColor' : '#000',
        'padding' : 16,
        'scrolling' : 'no',
        'titleShow' : false,
        'transitionIn' : 'fade',
        'transitionOut' : 'fade',
        'type' : 'iframe'
    });
});

