$(document).ready(function () {
	
	$('#slideshow_container').cycle({
		speed: 3000,
		timeout: 3000,
		delay: 0
		});
		
	$(".lb").lightBox();
	
	$("#video_thumbnail").click(function () {
		$("#video_popup").fadeIn(500);
		$('#slideshow_container').unbind(cycle);
	});
	$("#video_close").click(function () {
		$("#video_popup").fadeOut(500);
		
		
	});
	
	$(".waterrower_buy").click(function () {
		$("#rowers_popup").fadeIn(500);
	});
	$("#rowers_close").click(function () {
		$("#rowers_popup").fadeOut(500);
	});
	
	
	});