$(function(){
	$("#gallery-view-image").cycle({
			fx:    'scrollLeft',
			delay: 5000,
			timeout:5000,
			speed: 1000,
			pause: 1,
			cleartypeNoBg : true,
			pager:'.scrollable ul',
			pagerAnchorBuilder:function(i,el){
				return '<li class="gallery-item-'+(i+1)+'"><a href="#'+i+'"><img src="images/blank.gif" style="background: url(\''+$(el).attr('alt')+'\') no-repeat center center;"/></a></li>';
			},
			after:function(currSlideElement, nextSlideElement, options, forwardFlag){
				$("a.activeSlide").click();
			}
		});
	$("#gallery-popup div.scrollable").scrollable({
		size: 3,
		items: 'ul'
	});	
	if($("#gallery-popup div.scrollable ul li").length<=3)
	    $("#gallery-popup>a").addClass("disabled");
});