Shadowbox.init({
    counterType:'skip',
    continuous:true,
    animSequence: 'sync',
    language: 'en',
    skipSetup: true,
    players: ['img', 'ajax', 'html', 'iframe', 'qt', 'wmp', 'swf', 'flv']
}); 


$(document).ready(function(){

// Gallerien anzeigen in Shadowbox
    Shadowbox.setup("a.enlarge", {
	//gallery: "HotelImages",
	//autoplayMovies: true
    }); 

// HTML-Content via Ajax anzeigen in Shadowbox
    $("a.ajax-layer").click(function(event){
	event.preventDefault();
	$.ajax({url: $(this).attr("href"),
		cache: false,
		success: function(html){
		    Shadowbox.open({player: 'html', content: html, width: 600, height:450, options:{enableKeys:false, animate: true, resizeDuration: 0.3}});
		}
	       });
    }); 

}); 