The custom.js file is conflicting with another jquery file that I am using for navigation. Is there a way of bypassing this file and placing the Slider javascript directly into the the html file? I have tried this:
<script type="text/javascript">
$(document).ready(function(){
$('#aviaslider').aviaSlider({
blockSize: {height: 80, width:80},
transition: 'slide',
display: 'diagonaltop',
switchMovement: true
});
});
</script>
But it doesn't work. I only need the Diagonal Blocks effect.
The div #aviaslider is where the images are. I have tried leaving it as #diagonal-blocks, but it makes no difference.














