// JavaScript Document


// Kategorien anzeigen
function showKat(kat) {
	
	$(".kategorie").css('background', '#aaa').css('color', '#333');
	$("#button_" + kat).css('background', '#444').css('color', '#fff');
	
	if(kat!='Alle') {
		$(".kategorierahmen").hide();
		$("#button_Alle").css('border', 'none');
		$("#kategorie_" + kat).show();
	} else {
		$(".kategorierahmen").show();
	}
}


$(function() {

	$('.kategorierahmen a').lightBox(); // Select all links in object with gallery ID
         $('.projectimages a').lightBox(); // Select all links in object with gallery ID

});


function toggleProject(name){
         $("#"+name).toggle();
         $("#ein_"+name).toggle()
         $("#aus_"+name).toggle();
}


function show(id) {
         $("img.detailbild").css('display', 'none');
         $("#detailbild_"+id).show()
}
