$.fn.addVideo = function() {
    $(this).submit(function(){
        $(this).ajaxSubmit({
            success: function(data) {
                $("#dialog").dialog({
			bgiframe: true,
			modal: false,
			buttons: {
				Ok: function() {
                                    $('form :input[type="text"]').val("");
                                    location.href='/video';
				}
			}
		});
            }
        });

        

         return false;
    });
}

