jQuery(document).ready(function(){

	jQuery("#slider").easySlider({
		auto: true, 
		continuous: true,
		numeric: true,
		speed: 400,
		pause: 4000,
		hoverPause: false
	});
			
	jQuery("a[rel^='prettyPhoto']").prettyPhoto({
		padding: 30, /* padding for each side of the picture */
		showTitle: false,
		theme: 'light_square' /* light_rounded / dark_rounded / light_square / dark_square */
	});
	
	jQuery(".finish-button").click(function () { 
    jQuery("#setupform").submit(); 
  });
				 
});