// global javascript file

function addthickbox() {

    var href = $(this).attr('href');
    href += '/thickbox?KeepThis=true&TB_iframe=true&width=400&height=450';
    $(this).attr('href', href);

}

// jQuery image preloader
jQuery.preloadImages = function() {

    for(var i = 0; i<arguments.length; i++) {
        jQuery("<img>").attr("src", arguments[i]);
    }

}

$(function() {

    // this adds thickbox to any suggestion boxes
    $('#make-a-suggestion').each(addthickbox);
  
    // causes any link with rel="external" to open in a new window (like target="_blank")
    $('a[@rel=external]').click(function(){

        window.open($(this).attr('href'));
        return false;

    });


    // contact forms
    $('.nojs').remove();

    $.get('/forms/secret', function(txt){
        $('.secureform').append('<input type="hidden" name="data[Contact][ts]" value="'+txt+'" />');
    });

});

