$(document).ready(function () {
	
// Use this example, or...
jQuery('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel
// This, or...
jQuery('a.thickbox').lightBox(); // Select all links in object with gallery ID
// This, or...
jQuery('a.lightbox').lightBox(); // Select all links with lightbox class
// This, or...
jQuery('#ligallery a').lightBox(); // Select all links with lightbox class
// This, or...


/*if(jQuery(".despanel").hasClass("inactive")) {*/
	
	jQuery(".despanel .htmlcont, .despanel .headline").mouseover(function(){
			
		jQuery(".despanel .headline").animate({ 
			height: "385px",
			top: "100px"
		}, 1500 );
		
		jQuery(".despanel .htmlcont").animate({ 
			height: "370px",
			top: "110px"
		}, 1500 );
		
		/*jQuery(".despanel").append('<div class="downButt"><img src="http://www.amberger-glas.de/cms/upload/buttons/btn_down.png" border="0" /></div>');
		
		jQuery(".despanel .downButt").fadeIn(3000);*/
		
		jQuery(".despanel").removeClass("inactive").addClass("active");
	});		

/*} else {

	jQuery(".downButt img").click(function(){
		if(jQuery(".despanel").hasClass("active")) {
			
			jQuery(".despanel .headline").animate({ 
				height: "106px",
				top: "375px"
			}, 1500 );
			
			jQuery(".despanel .htmlcont").animate({ 
				height: "90px",
				top: "385px"
			}, 1500 );
			
			jQuery(".despanel .downButt").fadeOut(3000);
			
			jQuery(".despanel").removeClass("active").addClass("inactive");
		};
	});
}*/


});