jQuery.noConflict();

jQuery(document).ready(function() { 

  // Site Navigation. Superfish implementation.
  jQuery('#nav ul').superfish({
    hoverClass: 'sfhover',
    delay: 400,
    animation: {opacity:'show'},
    autoArrows: false,
    speed: 'fast'
  }); 
  
  // Lightbox functionality
  jQuery('a.lightbox').lightBox();
  
  jQuery('#slideshow').cycle({
		fx: 'fade',
    timeout: 3500
	});

}); 
