﻿$(function() {
    var contentId = getParameterByName("id");

    if (contentId == "capture") {
        $("#content-title").text("Document Capture Solutions");
        $("#loaded-content").load("/Content/html/products-pages.html #capture");
    }
    else {
        $("#content-title").text("Products");
        $("#loaded-content").load("/Content/html/products-pages.html #products");
    }
});