  $.noConflict();
  jQuery(document).ready(function() {
	jQuery("#slideshow").css("overflow", "hidden");
	
	jQuery("ul#slides").cycle({
		fx: 'fade',
		pause:0.5,
		prev: '#prev',
		next: '#next'
	});
	
	jQuery("#slideshow").hover(function() {
    	jQuery("ul#slideshow-nav").fadeIn();
  	},
  		function() {
    	jQuery("ul#slideshow-nav").fadeOut();
  	});
	
});
