function initgallery() {
	$('a').each(function() {
		if (this.getAttribute('href') && (this.getAttribute('rel') == 'slide')){
			this.onclick = function () {
				$("#slide").toggle();
				$("#slideimg").html('<img src="'+this.href+'"  alt="'+this.getAttribute("title")+'" title="'+this.getAttribute("title")+'" />');
				setTimeout("$('#slide').show('slow')", 1000);
				return false;
			}
		}
	});
	
	var allThumbs = $("#thumbs a").get();
	thumbLength = allThumbs.length;
	tOffset = 0;
}


	
	 
	
