
$(document).ready(function() {
	var options = {
	  handleOversize: 'resize'
	  ,animate: true
	  ,displayNav: true
	  ,overlayOpacity: 0.7
	  ,handleUnsupported: 'remove'
	  ,initialHeight:800
	  ,initialWidth: 700
	,continuous: true 
	};
	Shadowbox.init(options);


	$('#content h1').each(function(index) {
		$(this).html('<img src="render.php?name='+ $(this).text() +' &tag=h1_white" alt="' + $(this).text() + ' " />');
	});
	$('#content h2').each(function(index) {
		$(this).html('<img src="render.php?name='+ $(this).text() +' &tag=h2_white" alt="' + $(this).text() + ' " />');
	});
	$('#content h3').each(function(index) {
		$(this).html('<img src="render.php?name='+ $(this).text() +' &tag=h3_white" alt="' + $(this).text() + ' " />');
	});
	
	$('#navihor ul.rex-navi1 li a').not(' ul.rex-navi2 li a').each(function(index) {
		$(this).html('<img src="render.php?name='+ $(this).text() +' &tag=navi_white" alt="' + $(this).text() + ' " />');
	});
	
	$('#content .ueberschrift1').each(function(index) {
		$(this).html('<img src="render.php?name='+ $(this).text() +' &tag=h1_white" alt="' + $(this).text() + ' " />');
	});
	
	$('#content .chulkduster').each(function(index) {
		$(this).html('<img src="render.php?name='+ $(this).text() +' &tag=chulkduster" alt="' + $(this).text() + ' " />');
	});
	


});


