function initgallery() {
	var activeItem = null;
	

	//thumbnails Links setzen
	$('.thumbnav a').each(function() {
		if (this.getAttribute('href') && (this.getAttribute('rel') == 'slide')){
			$(this).find('img').hover(function(){
				$(this).css('background','#f00;');
			}, function(){
				$(this).css('background','#fff;');
			});
			
			this.onclick = function () {
				//$(".slide").toggle();
				$(this).parent().parent().parent().find(".slide").hide();
				$(this).parent().parent().parent().find(".largeimg").html('<img src="'+this.href+'" width="661" height="414" alt="'+this.getAttribute("title")+'" title="'+this.getAttribute("title")+'" />');
				//$(".largeimg").html('<img src="'+this.href+'" width="661" height="414" alt="'+this.getAttribute("title")+'" title="'+this.getAttribute("title")+'" />');
				//setTimeout("$('.slide').show()", 1000);		
				//setTimeout("$(this).parent().parent().parent().find('.slide').show()", 1000);		
				$(this).parent().parent().parent().find(".slide").fadeIn("normal");
				return false;
			}
		}
	});
}


