$(document).ready(function(){
$('#slideshow').cycle({
		slideExpr: '.slide',
		pager: '#pagination',
		pagerAnchorBuilder: function(idx, slide) { 
			myClass = (idx==0)?' class="activeSlide"':'';
			return '<a href="#" '+myClass+'>&nbsp;</a>'; 
		}
	});
	
	$("a[rel^='prettyPhoto']").prettyPhoto({
				theme: 'light_rounded' /* light_rounded / dark_rounded / light_square / dark_square */
	});
	
	$("p#pagination a").click(function () { 
      $('#slideshow').cycle('pause');
    });
	
	$('div#screenshots div.controls a.zoom').click(function(){
		jQuery('#slideshow .slide:visible a').click();
		return false;
	});

	
	$.localScroll();

});