Problem with Jquery and Jcicle

Problem with Jquery and Jcicle

Hi Guys

I'am problem with code below 
$(document).ready(function(){

 
 $('#right').load('http://dilingerie.com.br/slide');
 
 //----------------------------
 $('#menu li a').click(function(){
  link = $(this).attr('href')
  $.ajax({
    url : link,
    beforeSend: function(){
     $('#right').hide('slow')
     $('#carregando').show('fade')
    },   
    complete: function(){
     $('#carregando').hide('slow')
     $('#right').show('slow')
    },
    success: function(retorno){
        $('#right').html(retorno)
    }       
   
  })
  return false;
 })
 
})

this code was to load 3 images when typed the adrees of site however this is not happening ah also when double click in the link or clik three times on the link is that image is load below follows the code HTML so you can help me slove this proble

<script>
 $(document).ready(function(){
  $('#slidePrincipal ul').cycle({
   fx: 'fade',
   speed: 2000,
   timeout: 3000,
   prev: '#anterior',
   next: '#proximo',
  })
 
 })
</script>

<div id="slidePrincipal">
 <ul>
  <li><img src="<?php echo base_url();?>imgs/slide_principal03.jpg" alt="imagem" height="715" /></li>
         <li><img src="<?php echo base_url();?>imgs/slide_principal01.jpg" alt='slide'  height="715"  /></li>
  <li><img src="<?php echo base_url();?>imgs/slide_principal02.jpg" alt='slide' height="715"  /></li>
 </ul>
</div><!-- slide principal -->

since  thank your attention.

Alex Xavier