﻿$(document).ready(function () {
    // Here we're adding calling pinify and passing it a set of options
    // pinify will then automatically create the correct <meta> tags and 
    // insert them into the head of your document
    //
    var _domain = "http://www.brouw-bier.nl/";
    var _icon = _domain + "_master/current/favicon.ico";
    //
    $("head").pinify(
        { applicationName: "brouw-bier.nl"
        , favIcon: _icon
        , startUrl: _domain
        , tooltip: "Alles wat de amateur bierbrouwer of bierliefhebber moet weten over het brouwen van bier"
        , window: "width=1124;height=768"
        });
    try {
        window.external.msSiteModeCreateJumplist('brouw-bier.nl Favorieten');
        window.external.msSiteModeAddJumpListItem('Inhoudsopgave', _domain + "inhoudsopgave/", _icon);
        window.external.msSiteModeAddJumpListItem('Adressen', _domain + "adressen/", _icon);
        window.external.msSiteModeAddJumpListItem('Praktijk', _domain + "praktijk/", _icon);
        window.external.msSiteModeAddJumpListItem('Theorie', _domain + "theorie/", _icon);
    }
    catch (ex) {
    }
    //
});

