function initgallery() {
	$('.thumb').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")+'" />');
				setTimeout("$('#slide').fadeIn('slow')", 2000);
				return false;
			}
		}
	});
}




	
	 
	