// initialize jquery objects after document is ready
$(document).ready(function(){
	
	///////////////////////////////
	// Hover-Effect on Catsitems //
	$(".catslist li").hover(
		function() {
			$(this).addClass("hover").find("span").addClass("hover");
		},
		function(){
			$(this).removeClass("hover").find("span").removeClass("hover");
		}
	);
	
	///////////////////////////////
	// Lightbox //
	$(function() {
		//$('div.artikelbox div.content p a').lightBox();
		$('dt.gallery-icon a').lightBox();
		
});


});



