﻿$(document).ready(function () {

    $("#Intro").fancybox({ 'width': 600, 'height': 400 });
    if ($.urlParam('ItemID') == '345' || $.urlParam('ItemID') == '0') {
        $("#Intro").trigger('click');
        IntroRun = true;
    }

    $("#IntroMk").fancybox({ 'width': 600, 'height': 400 });
    if ($.urlParam('ItemID') == '336' || $.urlParam('ItemID') == '0') {
        $("#IntroMk").trigger('click');
        IntroRun = true;
    }
    
    
});
$.urlParam = function (name) {
    var results = new RegExp('[\\?&]' + name + '=([^&#]*)').exec(window.location.href);
    if (!results) { return '0'; }
    return results[1] || '0';
}
