////////////////////////////////////////////////////////////////////////////////////////////////////////
/*Div Scroller*/
$(function()
{
	$('.scroller-textinhalt').jScrollPane({showArrows:false});
	$('.scroller-gal').jScrollPane({showArrows:true});
});
////////////////////////////////////////////////////////////////////////////////////////////////////////
/*Hintergrund*/
$(document).ready(function(){
	var width  = $(window).width();
	$("#background").width(width);
	$(window).resize(function(){
		width  = $(window).width();
		$("#background").width(width);
	}); 
	////////////////////////////////////////////////////////////////////////////////////////////////////////
	/*Bildergalerie*/

      /* Funktion Galerie nach Relation-Attribut */
      $("a[rel=gal]").fancybox({
         'transitionIn': 'elastic',
         'transitionOut': 'elastic',
         'titlePosition' : 'over',
         'titleFormat': function(title, currentArray, currentIndex, currentOpts) {
            return '<span id="fancybox-title-over">' + (currentIndex + 1) + '/' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') +
            '</span>';
         }
      });
	  $("#popup").fancybox({
         'width': '80%',
         'height': '80%',
         'autoScale': false,
         'transitionIn': 'elastic',
         'transitionOut': 'elastic',
         'centerOnScroll': 'true',
         'type': 'iframe'
      });

});

