$(function(){

	$('ul#slideshowcontent.active').cycle({
		pause				:true,
		fx					:'scrollHorz',
		easing				:'easeInOutCubic',
		speed				:1750,
		timeout				:6000,
		pager				:'#slideshowpager',
		pagerEvent			:'click',
		pauseOnPagerHover	:true,
		pagerAnchorBuilder	:function(idx, slide) { 
								return '<div></div>';
							},
		next				:'#slideshowright',
		prev				:'#slideshowleft'
	});
	
	$('div#slideshowcontent.active').cycle({
		pause				:true,
		fx					:'scrollHorz',
		easing				:'easeInOutCubic',
		speed				:1750,
		timeout				:0,
		next				:'#slideshowright',
		prev				:'#slideshowleft'
	});
	
	if($.browser.msie){
		$('#slideshowleft span').css('display','block');
	}
	
});
