jQuery(document).ready(function() {

	/*
	*   Examples - images
	*/
	
	
	 $(".extLink").fancybox({

         'width' : '65%',

         'height' : '65%',

         'autoScale' : false,

         'transitionIn' : 'none',

         'transitionOut' : 'none',

         'type' : 'iframe'

     });

	$("a.single-image").fancybox({'padding':0,'autoScale':true});
	
	$("a#themenbereiche").fancybox({'padding':0,'autoScale':true});



	$("a.video").click(function() {
		$.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'easingIn'      : 'easeOutBack',
			'easingOut'     : 'easeInBack',
			'title'			: this.title,
			'width'			: 680,
			'height'		: 495,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
			    'wmode'				: 'transparent',
				'allowfullscreen'	: 'true'
			}
		});
		
		

		return false;
	});
   

	$("#programm").fancybox({
		 'width' : '50%',
		 'height' : '75%',
		 'autoScale' : false,
		 'transitionIn' : 'none',
		 'transitionOut' : 'none',
		 'type' : 'iframe',
		 'padding' : 0
	 });
	 
	 $("#teilnehmer").fancybox({
		 'width' : '50%',
		 'height' : '75%',
		 'autoScale' : false,
		 'transitionIn' : 'none',
		 'transitionOut' : 'none',
		 'type' : 'iframe',
		 'padding' : 0
	 });




	
	
	
	$('#tags li a').click( function()
	{
		var theClass = $(this).attr('class');

		$('div.product').hide(0);
		
		if( theClass == 'startseite') 
		{
			$('div.product' + 'startseite' ).fadeIn(250);
		}
		else
		{
			$('div.' + theClass ).fadeIn(250);
		}
		
		return false;
	});

});


