$(function()
{
	$("#slide img:first").show();
	$("#thumbnail-lists").cycle(
	{
		fx: "scrollHorz",
		speed: 500,
		timeout: 0,
		next: $("#slideshow a.btn_next"),
		prev: $("#slideshow a.btn_prev")
	});
	$("#thumbnail-lists a").click(function()
	{
		index = $("#thumbnail-lists a").index(this);
		$("#slide img").fadeOut(800);
		$("#slide img:eq(" + index + ")").animate({ opacity: 1 }, 0).fadeIn(800);
		return false;
	});
	$("#slideshow a.btn_next, #slideshow a.btn_prev").click(function() { return false; });
});
