var gallery = false;

function init(){
	/*
	setTimeout(function(){
		$("#slideshow").removeClass("padBottom")
		$("#slideshow").sexyCycle({
			speed: 600,
			interval: 4000,
		});
	}, 4000) 
	*/
	
	
	if(gallery){
		$(".thumb").click(show_large)
		$("#zoom").mousedown(function(){
			$("#zoom").addClass("hide")
		})
	}
	$('#slideshow').cycle()
}

function show_large(){ 
	var src = $(this).attr("href")
	$("#zoom .image").html("<img src=\""+src+"\" />")
	$("#zoom").removeClass("hide")
	return false
}


$(document).ready(init)
