function initgallery() {
	$('a').each(function() {
		if (this.getAttribute('href') && (this.getAttribute('rel') == 'slide')){
			this.onclick = function () {
				$("#slideimg").html('<img src="'+this.href+'" width="501" height="301" alt="'+this.getAttribute("title")+'" title="'+this.getAttribute("title")+'" />');								
				if ($(this + " .caption")){
					$("#slidecaption").text($(this).children(".caption").text());								
				}
				
				$('#smallpictures a.thumb').removeClass('active');
				$(this).addClass('active');
				
				return false;
			}

		}
	});
	
	$('#smallpictures a.thumb:first').addClass('active');
	$("#slidecaption").text($('#smallpictures a.thumb .caption:first').text());
	
	$('#smallpictures a.thumb').hover(function(){
				$(this).addClass('over');	
				},
				function(){
				$(this).removeClass('over');	
				}
		);
	
}



	
	 
	