$(document).ready(function() { //import scripts only when required
    try {
        $("a.download").click(function() {
            xit = 0;
            tb_download_init(this)
        });
        $("area.download").click(function() {
            xit = 0;
            tb_download_init(this)
        });    
    } catch (err) { }
});     //end document ready

function tb_download_init(domChunk) {
    var thanksLink = "/splash/shared/thanks.asp?lang=" + thisLang;
    switch (thisLang) {
        case "fr":
            var t = "T&#x00E9;l&#x00E9;chargez notre logiciel de casino, prot&#x00E9;g&#x00E9; contre les virus"; 
            break;
        case "it":
            var t = "Scarica il nostro software del casin&#x00F2;, sicuro al 100%";
            break;
        case "de":
            var t = "Laden Sie unsere 100% Virus Freie Casino Software herunter";
            break;
        case "da":
            var t = "Download vores 100% virusfri casino software";
            break;    
        case "es":
            var t = "Descarga Nuestro Software 100% Garantizado Sin Virus";
            break;
        default:
            var t = "Download Our 100% Virus Free Casino Software";
    }
    var a = thanksLink + "&TB_iframe=true&height=150&width=440&modal=false" || null;
    var g = thanksLink || false;
    tb_show(t, a, g);
    domChunk.blur();
    return true;    
}