$(document).ready(function(){
    /* PodcastPlayer */
	/*
    $('a.embedVideo').each(function(){
    	var htmlElementId = $(this).attr('rel');
    	var videoFile     = $(this).attr('href');

    	var preParams = {}

    	var params = {
			allowscriptaccess: 'always',
			allowfullscreen: 'true'
		};

		var flashvars = {
			height: '338',
			width: '600',
			image: '/img/menu_bg.jpg',
			file: videoFile,
			transition: 'bubbles',
			bufferlength: '10',
			backcolor: '0x000000',
			frontcolor: '0xffffff',
			lightcolor: '0xffffff',
			screencolor: '0x000000',
			overstretch: 'none',
			shownavigation: 'true',
			showicons: 'true',
			showeq: 'false',
			showstop: 'true',
			showdigits: 'true',
			usefullscreen: 'true'
		};

		swfobject.embedSWF('/pub/mediaplayer.swf', htmlElementId, '600', '338', '9.0.0', preParams, flashvars, params);
    });
*/

/*
	//Container Silde verkleinern
	$('#slider').each(function(){
		$(this).css({height: '140px', width: '3290px', display: 'block', overflow: 'visible'});
	});

	// Automatische Animation
	function mySlider() {
	var marginLeft = $('#slider').css('margin-left');
	
	if(marginLeft == '0px') {
		var newMarginLeft = '-2479';
		var duration      = 20000;
	} else {
		var newMarginLeft = '0';
		var duration      = 20000;
	}
	$('#slider').animate({
		marginLeft: newMarginLeft,
		//fadeTo:		'fast',
		setTimeout:	'500'
	}, duration, mySlider);
	};
	
	//Container Silde verkleinern
	$('#sliderPress').each(function(){
		$(this).css({height: '140px', width: '1613px', display: 'block', overflow: 'visible'});
	});
	// Automatische Animation
	function mySliderPress() {
	var marginLeft = $('#sliderPress').css('margin-left');
	
	if(marginLeft == '0px') {
		var newMarginLeft = '-868';
		var duration      = 20000;
	} else {
		var newMarginLeft = '0';
		var duration      = 20000;
	}
	$('#sliderPress').animate({
		marginLeft: newMarginLeft,
		//fadeTo:		'fast',
		setTimeout:	'500'
	}, duration, mySliderPress);
	};
	
	
	mySlider();
	mySliderPress();
*/
});


