$(document).ready(function() {
    $('form.submit-site').bind('submit', function(){
	if($(this).find('input.field').val() != ''){
	    $.post(root+'add', $(this).serialize(), function(response){
	        $('#result').html(response);
	        $('#result').slideDown();
	    })
	}
	return false;
    });
    $('form.submit-site input.field').bind('keyup', function(){
	pos = $(this).val().indexOf('://');
	if(pos > 0){
	    $(this).val($(this).val().substring((Number(pos)+3), $(this).val().length));
	}
    })
    
    if($('#status').attr('rel') == "processing"){
	    interv = setInterval(
			    function(){
				if($('#status').attr('rel') != "processing"){
				    clearInterval(interv);
				    return;
				}
				$.get(location, null, function(response){
				    $('#reload').html(response)
				})
			    }, 10000);
    }
});
