$(function () {
    //script for adding the 'current' indicator above the main nav
    var path = location.pathname.split("/");
    path = path[1];

    $("#primary_nav a[href*='" + path + "']").each(function () {
        $(this).addClass("current");
        $(this).parents('li').children('a').addClass('current');
    });

    $("#quickNav a[href*='" + path + "']").each(function () {
        $(this).addClass("current");
    });

    $('.next-tab').click(function () {
		$.scrollTo(0, 0);
	});    
});

$(window).load(function () {
	$('img.need-caption').delay(500).jcaption();
});

