jQuery.noConflict();	
	jQuery(document).ready(function(){
		jQuery('#slideshow').before('<ul id="pager">').cycle({ 
		fx:     'fade', 
		speed:  'slow', 
		timeout: 0, 
		pager:  '#pager', 
     
		// callback fn that creates a thumbnail to use as pager anchor 
		pagerAnchorBuilder: function(idx, slide) { 
		var thumb = jQuery(slide).children('img').attr('src');		
		/* var newthumb = thumb.replace('.jpg', '-75x75.jpg');	 */
		var newthumb = thumb.replace('.jpg', '.jpg');			
			return '<li><a href="#"><img src="' + newthumb + '" /></a></li>'; 
		} 
		});
		jQuery("#slideshow li").css("position","relative");
		jQuery("#slideshow").css("height", "auto");
	});	
