Everything works fine on my page except I have an image slider that is supposed to be a lightbox when you click on the image. But it opens in a new window instead.
I Cleaned up what i was loading to the following below: Where is the conflict still and how do i correct it. Any help would be greatly appreciated
<!--jquery library -->
<script type="text/javascript" src="js/jquery-1.3.2.min.js"></script>
<!--Recent Projects-->
<script type="text/javascript" src="js/jquery.jcarousel.pack.js"></script>
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('#mycarousel').jcarousel();
});
</script>
<!--Header-->
<script type="text/javascript" src="js/mootools.js"></script>
<script language="javascript" type="text/javascript" src="js/_class.js"></script>
<script type="text/javascript">
var hs2;
window.addEvent('domready',function(){
new SmoothScroll({ duration: 800, transition: Fx.Transitions.linear}, window);
hs2 = new noobSlide({
box: $('slide-box'),
items: [1,2,3],
size: 615,
autoPlay: true,
interval: 11000,
fxOptions: {
duration: 1111,
transition: Fx.Transitions.Sine.easeOut,
wait: false
},
buttons: {
previous: $('prev1'),
next: $('next1'),
stop: $('hiddenstop'),
play: $('hiddenplay')
}
,handles: $('#slidecontrols li.sli')
,onWalk: function(currentItem,currentHandle){
$('slilbl1').removeClass('active');
$('slilbl2').removeClass('active');
$('slilbl3').removeClass('active');
$('slilbl'+currentItem).addClass('active');
}
});
});
</script>