jQuery(document).ready(function () {

    jQuery('#primary #searchform #s').val('SEARCH');

    jQuery('#primary #searchform #s').click(function () {
        var el = jQuery(this);
        if (el.val() == 'SEARCH') {
            el.val('');
        }
    });
    jQuery('#primary #searchform #s').blur(function () {
        var el = jQuery(this);
        if (el.val() == '') {
            el.val('SEARCH');
        }
    });

    jQuery('.to-be-a-trainer').each(function () {

        var el = jQuery(this).parent().parent();

        el.prev('.top').remove();
        el.next('.bottom').remove();
        el.css({'background' : 'none', 'padding' : 0, 'margin-bottom' : '10px', 'margin-left' : '-5px'})

    });

    jQuery('.upload_image_button').click(showMediaLibraryBox);

    window.send_to_editor = function(html) {
        imgurl = jQuery('img', html).attr('src');
        jQuery(currentUploadTextfield).val(imgurl);
        tb_remove();
    };

});

function showMediaLibraryBox() {
    currentUploadTextfield = jQuery(this).attr('href');
    tb_show('', 'media-upload.php?type=image&amp;TB_iframe=true');
    return false;
}
