function fancyAlert(msg) {
    jQuery.fancybox({
    'scrolling' : false,
    'content' : "<div style=\"margin:1px;width:240px;\">"+msg+"</div>"
    });
};

$(document).ready(function(){
    var fb_iv = null;

    $('#nav_about a').width($('#nav_about').width()-20);
    $('#nav_services a').width($('#nav_services').width()-20);
    $('#nav_injuries a').width($('#nav_injuries').width()-20);
    $('a.hidden_slide').fancybox({
        titlePosition: 'inside',
        showNavArrows: true,
        cyclic: true,
        onStart : function() {
            if(fb_iv) {
                clearInterval(fb_iv);
                fb_iv = setInterval($.fancybox.next, 4000);
            }

        }
    });



    $('.start_slider').bind('click', function() {
        $('a.hidden_slide').eq(0).trigger('click');

        if(fb_iv) clearInterval(fb_iv);
        fb_iv = setInterval($.fancybox.next, 4000);

    })

    $('a.no_lecture').bind('click', function() {
        fancyAlert("<h3 style='text-decoration:underline'>Lecture Notes Not Available</h3><p>Lecture notes are available for download for 48 hours after each presentation.</p><p>If you haven&rsquo;t had a chance to download them, please <a style='color: #0099CC' href='mailto:info@paulgoughphysio.com'>contact us</a> and we will be happy to help.</p>")
        return false;
    })
});
