$(document).ready(function(){	
	// Für die News auf der Startseite
	$("#biw-accordion").accordion();

	// Startseitenreiter
	$("#biw-player-nav li a").click(
		function () {
			if ($(this).hasClass('active')) return false;
			$('.biw-player-content').fadeOut();
      $($(this).attr('href')).fadeIn();
			$('#biw-player-nav a').removeClass('active');
			$(this).addClass('active');
			return false;
		}
	);

	// Fotos Systemweit	
	$('#biw-photos').galleryView({
		panel_width: 643,
		panel_height: 400,
		frame_width: 100,
		frame_height: 100
	});
	
});
