﻿
// Moves the red bar below the intro image
// on Product / Project detail pages
function initDetailPage() {
    var firstEl = $(".detail-bar").next();
    if (firstEl.length > 0) {
        if (firstEl[0].nodeName == "IMG") {
            $(".detail-bar").before(firstEl.clone());
            firstEl.remove();
        }
    }
}

function setupProjectAccordion() {
    $(".browse ul").hide();
    $(".browse h1").click(function() {
        $(".browse ul").hide();
        $(this).next("ul").show();
    }).css("cursor", "pointer");
    
    // Open the current link
    $(".browse a[href='" + location.pathname + "']").closest(".menu-item").children("h1").trigger("click");
}