/* Homepage Slideshow Remake */

jQuery.noConflict();
jQuery(function() {
  jQuery('#slideshow').cycle({
    fx:      'fade',
    timeout:  3000,
    prev:    '#previous',
    next:    '#next',
    before: function() { 
      jQuery('#caption').html(this.alt);
    }
  });
  jQuery('#slideshow img').click(function (){
    document.location.href = jQuery(this).attr('longdesc');
  }).css('cursor', 'pointer');
});


/* Random Interior Banner */

jQuery(function() {
  jQuery('#random-interior-banner').cycle({ 
    timeout: 0,
    random: 1
  });
});
