function openByteFMPlayer() {
	window = window.open('http://byte.fm/player/player.html','Küchenradio','location=no,menubar=no,toolbar=no,status=no,resizable=no,scrollbars=no,width=220,height=500');
	window.moveTo(0,0);
	window.focus();
}

// Make.TV-Player
function makeTVPlayer () {
	playerWindow = window.open('http://konspirativekuechenkonzerte.de/player/index.html', 'Konspirative Küchenkonzerte live!', 'width=1150,height=480,status=no,scrollbars=no,resizable=no');
	playerWindow.focus();
}


// domready start

$(document).ready(function() {

	$('div#rezeptebuechlein, #printLink').removeClass('nojs');
	//$('div#rezeptebuechlein img').lazyload({
	//	container: $('div#rezeptebuechlein')
	//});
	
	$('ul#receiptNav a').click(function(e) {
		e.preventDefault();
	});
	
	$('ul#receiptNav').jFlow({
		slides: '#receiptSlider',
		controller: '.receiptColWrapper',
		slideWrapper : '#jFlowSlide',
		selectedWrapper: 'jFlowSelected',
		auto: false,
		width: '420px',
		height: '315px',
		duration: 1,
		prev: '.receiptPrev',
		next: '.receiptNext'
	});

	$('div#printLink input').click(function(f) {
		$('div.jFlowSelected').jqprint({ operaSupport: true });
	});
	
	$('a#startPlayer').click(function(g) {
		window = window.open('http://byte.fm/player/player.html','Küchenradio','location=no,menubar=no,toolbar=no,status=no,resizable=no,scrollbars=no,width=220,height=500');
		g.preventDefault();
	});


	$('ul.calDateDetail a').click(function(e) {
		e.preventDefault();
	});



});


