
	  var pause_slideshow = 0;
	  $(function() {
		$("#slideshow").cycle({
			fx: "zoom", // fade, zoom, fadeZoom,
						// scrollUp/Down/Left/Right, scrollHorz, scrollVert, 
						// shuffle, slideX, slideY,
						// turnUp/Down/Left/Right,
						// blindX, blindY, blindZ,
						// growX, growY, curtainX, curtainY,
						// cover, uncover, toss, wipe,
						// speedIn, speedOut, easeIn, easeOut
			timeout: 100,
			speed: 3000,  // speed of the transition (any valid fx speed value)
			speedIn: 900,  // speed of the 'in' transition
			speedOut: 800,  // speed of the 'out' transition
			pager: "#db_nav",
			next:   "#db_next", 
			prev:   "#db_prev",
			pagerAnchorBuilder: function(idx, slide) { 
				return "#db_nav li:eq(" + idx + ") a"; 
			}
		});	
		
		$("#db_toggle").click(function() { 
			if(pause_slideshow == 0){
				$("#slideshow").cycle("pause");
				pause_slideshow = 1;
				$(this).toggleClass("pause_sel");
				$("#db_toggle2").toggleClass("play");
			}
			$(this).blur();
		});
		$("#db_toggle2").click(function() { 
			if(pause_slideshow > 0){
				$("#slideshow").cycle("resume");
				pause_slideshow = 0;
				$(this).toggleClass("play");
				$("#db_toggle").toggleClass("pause_sel");
			}
			$(this).blur();
		});
	});

