/* Javascript Copyright TheSexDump.com */

$(document).ready(function() {
	$('#quick_search').focus(function() {
		$(this).val('');
	});
	
	$('#quick_search').blur(function() {
		if ($(this).val() == '') {
			$(this).val('Quick Search...');
		}
	});
    
    //loadQtip();

    $('#verify_me').click(function() {
        $('#verify_ajax_loader').show();

        $.post($('#verify_form').attr('action'), function(data) {
            $('#verify_ajax_loader').hide();
            if (data.success) {
                alert('Verification complete!. You may remove the file from your server now.');
                window.location = data.redirect_url;
            } else {
                alert('Verification failed. Please ensure you have uploaded the file to the correct location.');
            }
        }, 'json');
        return false;
    });

	$('#link_back_code').click(function() {
		$(this).focus();
		$(this).select();
	});
});

function loadQtip()
{
    $('.link_title').each(function() {
        var image = $(this).find('div').html();
        if (image) {
            $(this).qtip({
                content: image,
                style: {
                    name: 'dark',
                    width: 185,
                    height: 122
                },
                position: {
                    corner: {
                        target: 'bottomMiddle',
                        tooltip: 'topLeft'
                    }
                }
            });
        }
    });
}
