﻿/// <reference path="jquery-1.4.2.min.js" />
/// <reference path="TriFinance.Functions.js" />

$j = jQuery.noConflict();
window.GlobalConfig = {};
var isIE = document.all;
var isOther = !document.all;

$j(document).ready(function () {
    // Hack for FF (it's not smart enough to offer a button property *grml*).
    // [MB]
    $j(document).mousedown(function () { GlobalConfig.MousePressed = true; });
    $j(document).mouseup(function () { GlobalConfig.MousePressed = false; });
});
