(function ($, undefined) {
	
	$(function() {
		
		$('.slideshow').each(function(){
			var $this = $(this);
			$this.height($this.find('img').height());
			$this.css('padding-bottom', '20px');
			$this.cycle();
		});
		
	});
	
})(jQuery);
