document.write('<scr' + 'ipt language="javascript" type="text/javascript" src="/support/js/jquery.cycle.all.pack.js"></script>');
//*/initialize the slideshow component
$(function() {
    $.fn.cycle.defaults.speed   = 900;
		$.fn.cycle.defaults.timeout = 6000;
});
//*/

function ss(showID) {
	$(function(){
		$('.sscaption p').wrap("<div></div>");
		$('#s' + showID).css("visibility","visible");
		$('.ssbox p.imagecount').css("height", $('div.ssbox h3').height()+10);
//		$('#sidebar1').css('height',($('#mainContent').height()-20));
		
		
		
		$('#s' + showID + ' div.pics').cycle({
			next:   '#next' + showID,
			prev:   '#prev' + showID
		});
		$('#s' + showID + ' div.sscaption').cycle({
			next:   '#next' + showID,
			prev:   '#prev' + showID
		});

		$('.ssnext').after('<div style="width:auto; height:0px; clear:both;"><!-- --></div>');
	});	
};
