Can I use other js with jQuery Mobile

Can I use other js with jQuery Mobile

I got a html page ... with this js but how can I use it together with jQuery Mobile
 
Regards
 
-------------------------------------------------------------------------------------------------------------------
 
    <!-- Include javascript files -->
    <!-- Latest jQuery framework -->
    <script type="text/javascript" src="js/jquery.min.js" ></script>
    <!-- Plugin for scaling images in the posts -->
    <script type="text/javascript" src="js/jquery.jScale.js" ></script>
    <!-- A custom jQueriy UI plugin, which contains the color animation.-->
    <script type="text/javascript" src="js/jquery-ui-1.8.9.custom.min.js" ></script>
    <!-- Plugin for loading feeds -->
    <script type="text/javascript" src="js/jquery.jgfeed.js" ></script>
    <!-- Plugins needed for the scrollbar -->
    <script type="text/javascript" src="js/jquery.mousewheel.js"></script>
    <script type="text/javascript" src="js/jquery.jscrollpane.min.js"></script>
    <!-- FancyNews plugin -->
    <script type="text/javascript" src="js/jquery.fancyNews-1.2.min.js" ></script>
    <script type="text/javascript">
   
    $(document).ready(function(){
    //init fancynews plugin
    $('#fancyNews').fancyNews({slideTime:0, maxWords:15});
   
    //external rss feed
    $('#fancyNewsRss').fancyNews({height:500, previewsPerPage:5, maxWords:20, feed:'', useLinks:true});
    });
  
    </script>