$(document).ready(function(){
	
	//Super 8
	var params = {};
	var attributes = {};
	$("audio").each(function(){
		var soundfileOgg = $(this).attr("src");
		var itsID = $(this).attr("id");
		
		jwplayer(itsID).setup({
			'flashplayer': 'media/flash/player.swf',
			'width': '230',
			'height': '24',
			'file': soundfileOgg,
			'controlbar': 'bottom'
		  });
	});
	
	//Album
	$('#jQueryAlbumFlow').jcarousel({
        vertical : true,
		visible : 5
    });
	
	//FancyBox
	$("a.jQueryFancybox").fancybox({
		'overlayShow'	:	true
	});
	
	
	//Höhe der zwei Container
	var col1Height = $("#column1").height();
	var col2Height = $("#column2").height();
	if(col2Height > col1Height) {
		var diff = col2Height - col1Height;
		
		$("#column1 header").height(function(index,height){
			return (height + diff);
		});
	}
	
	backgroundImage = "media/images/bilder/" + $("body").attr("id") + ".jpg";
	itsCentered = true;
	if($("body#index").length > 0 || $("body#news").length > 0) {
		itsCentered = false;
	}
	if($("html.ie6").length < 1) {
		$("body").ezBgResize({
			img : backgroundImage,
			center: itsCentered
		});
	}
});

