  jQuery.noConflict();
  
  (function($) {
    
    $(document).ready(function() {
      
      ;$('.click_goto_a').click(function() {
        if((sLink = $(this).find('a:first').attr('href')) != undefined) {
          document.location = sLink;
        }
      });
      
      $('#div_slideshow_right .div_images').cycle({
        speed: 1500,
        timeout: 3000
      });
      
    });
    
  }) (jQuery);
