Tinymce image path changes on drag

Hey guys, when I insert a picture into TinyMCE and drag it within the editor, the image immediately changes path from http://www.mysite/images/ to just images/. Here is my config right now:


<script type="text/javascript">
    tinyMCE.init({
        // General options
        mode : "textareas",
        theme : "advanced",
        skin : "o2k7",
        skin_variant : "silver",
        relative_urls : false,
        document_base_url : "http://www.aomtsu.com/",
        force_p_newlines : false,
        verify_html : false,
        inline_styles : false,
        remove_script_host : false,
        convert_urls : false,



        plugins : "safari,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,templates,advlink,imagemanager",

        // Theme options
        theme_advanced_buttons1 : "forecolor, |,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,|,bullist,numlist,fontsizeselect,cut,copy,paste,|,search,replace",
        theme_advanced_buttons2 : "outdent,indent,blockquote,|,undo,redo,|,link,unlink,code,|,insertdate,inserttime,|,hr,removeformat,sub,sup",
        theme_advanced_buttons3 : "",
        theme_advanced_toolbar_location : "top",
        theme_advanced_toolbar_align : "left",
        theme_advanced_statusbar_location : "",
        theme_advanced_resizing : false,

        // Example content CSS (should be your site CSS)
        content_css : "jscripts/tiny_mce/css/content.css",

        // Drop lists for link/image/media/template dialogs
        template_external_list_url : "jscripts/tiny_mce/lists/template_list.js",
        external_link_list_url : "jscripts/tiny_mce/lists/link_list.js",
        external_image_list_url : "jscripts/tiny_mce/lists/image_list.js",
        media_external_list_url : "jscripts/tiny_mce/lists/media_list.js",

        // Replace values for the template plugin
        template_replace_values : {
            username : "Some User",
            staffid : "991234"
        }
    });
    </script>
<!-- /TinyMCE -->