$(document).ready(function(){
//alert($("#inhalt_popup").html());   
   if($("#inhalt_popup").html() == "") {
	
   	
   }else {
         $("#inhalt_popup").fadeIn("slow");
         
         var images = new Array();
	count = -1;
	
	$("#inhalt_popup .csc-textpic-image img").each(function() {
		count++;
		
		image = new Object;
		image.src = $(this).attr("src");
		
		images[count] = image;
	});
	
	//alert(count);
	
	$("#inhalt_popup").crossSlide({
		sleep: 5,  //px/sec
		fade: 1     //sec
	}, images);

                     	
   }
 });





function hideLayer(){
 $("#inhalt_popup").fadeOut("slow");
}