2 Functions working at the same time

2 Functions working at the same time

Hi,
 
Can anyone help me with this it would be greatly appreciated.
 
How can I get 2 functions working at the same time? 
 
Here is what I have at the top:
<script type="text/javascript" src="jquery-1.5.2.min.js"></script>
<script type="text/javascript" src="jquery.innerfade.js"></script>
<script type="text/javascript" src="switch.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#rotate').innerfade({
speed: 'slow',
timeout: 10000,
type: 'sequence',
containerheight: '260px'
        });
});
</script>











 
It seams every time i comment out switch.js the innerfade function works then if I comment out jquery.innerfade.js(image change), switch.js (menu) works.  But they do not work at the same time so if the
images are changeing I cannot hover over the buttons on the menu they act like a graphic, basically not interactive.
 
Thanks