// Ajax Aufruf für Nachladen der Haupttemplates
function getData(cmd)
{
	$.get(cmd, function(data){

		$("#data").html(data);
		$("#printlink").show();
		initContentScroll();

		$("a[rel^='lightbox']").slimbox({loop: true,counterText: "Bild {x} von {y}"}, null, function(el) {
			return (this == el) || ((this.rel.length > 9) && (this.rel == el.rel));
		});

	});
}

function openArtDetail(id)
{
	$(".art_teaser_"+id+",.art_details_"+id).slideToggle("slow", function(){
		initContentScroll();
	});
}

function initContentScroll()
{
	jQuery(".content-scroll-pane").jScrollPane();
	jQuery(".content-scroll-pane_3").jScrollPane();
}

$(function(){

	initContentScroll();

});
