I am sure that the conflict is between my pageslide and image slider..
Here is the code for the page slide:
<ul>
<li>
<a href="javascript:$.pageslide({ direction: 'right', href: '_secondary.html' })" class="first">Slide to the right, and load content from a secondary page.</a>
</li>
<li>
<a href="javascript:$.pageslide({ direction: 'left', href: '/template/_secondary.html' })" class="second">Open the page programatically.</a>
</li>
</ul>
<script>
var jq171 = jQuery.noConflict();
</script>
<script src="/template/js/jquery-1.7.1.min.js"></script>
<script src="/template/js/jquery.pageslide.js"></script>
<script>
/* Default pageslide, moves to the right */
$(".first").pageslide({ direction: "right"});
/* Slide to the left, and make it model (you'll have to call $.pageslide.close() to close) */
$(".second").pageslide({ direction: "left"});
</script>`
Here is the image slider: This code references two jQuery libraries - v1.5.1 & orbit-1.2.3
<div class="container" style="margin-top:20px; margin-left:10px;">
<div id="featured">
<a href=""><img src="*****" /></a>
<a href=""><img src="*****" /></a>
<a href=""><img src="*****" /></a>
<a href=""><img src="*****" /></a>
<a href=""><img src="*****" /></a>
</div>
For a minute a I had them both working together, but i'm not sure what is causing the conflict. I have tried the no conflict script in different variations.. Let me know if you need any more information to help. Thanks!