$(document).ready(function() {
  $('.img_col a img, .img_row a img').parent().click(function() {
    if ($.browser.msie === true && $.browser.version < 7) {
		window.scrollTo(0,0);
	}
	GB_open($(this).attr('href'),$(this).attr('title'));
	return false;
  });
  if ($('body.geschichtederorgel').length>0||$('body.kinderstationen').length>0||$('body.klangweg').length>0) {
	$('.subnav2 a').click(function() {
		$('.subnav2 li').removeClass('selected');
		$('.copy').not('.copy_main').addClass('hidden');
		$(this).parent().addClass('selected');
		var id = $(this).parent().attr('id');
		$('#copy_'+id).removeClass('hidden');
		$('.flashplayer').remove();
		$('#copy_'+id+' .soundsample p.mp3').each(function() {
		var file = $(this).children('a').attr('href');
		$(this).parent().append('<div class="flashplayer"></div>');
		$(this).parent().children('.flashplayer').flash(
			{ 
			  src: '../../assets/flash/streaming_player.swf',
			  width: 280,
			  height: 30,
			  wmode: "transparent",
			  flashvars: { fileName: file }
			},
			{ version: 6 }
    	);
		$(this).hide();
	});
	});
	$('.soundsample p.mp3').each(function() {
		var file = $(this).children('a').attr('href');
		//$(this).children().remove();
		var path = '../../';
		if ($('body.kinderstationen').length>0) {
			path = '../';
		}
		$(this).parent().append('<div class="flashplayer"></div>');
		$(this).parent().children('.flashplayer').flash(
			{ 
			  src: path+'assets/flash/streaming_player.swf',
			  width: 280,
			  height: 30,
			  wmode: "transparent",
			  flashvars: { fileName: file }
			},
			{ version: 6 }
    );
		$(this).hide();
	});
  }
  if ($('body.geschichtedesorgelbaus').length>0) {
	  $('.content').append('<div class="pfeifen"></div>');
	  $('.pfeifen').flash(
			{ 
			  src: '../../assets/flash/pfeifen.swf',
			  width: 600,
			  height: 240,
			  wmode: "transparent",
			  flashvars: { lang: window.lang }
			},
			{ version: 6 }
    );
  }
  if ($('body.gaestebuch').length>0) {
		$('p.write a').click(function(){
			$('#entryForm').slideToggle('normal');
	  	});
  }
   if ($('body.home').length>0) {
	  $('#intro .fotostreifen').remove(); 
	  $('#intro').flash(
			{ 
			  src: 'assets/flash/intro1.swf',
			  width: 858,
			  height: 215,
			  wmode: "transparent",
			  flashvars: { lang: window.lang }
			},
			{ version: 6 }
    );
  }
});