$(document).ready(function(){

        /* SITECHIPS PRUEFUNGEN */
	var scCB = (location.href.match('/redaktion/') != null);
	var scMSIE = ($.browser.msie == true) ? true : false ;
	var scMOZILLA = ($.browser.mozilla == true) ? true : false ;
	var scOPERA = ($.browser.opera == true) ? true : false ;
	var scWEBKIT = ($.browser.webkit == true) ? true : false ;
	var scCHROME = (navigator.userAgent.toLowerCase().indexOf('chrome') > -1) ? true : false ;
        /*---------------------------------------------------------------------------------------------------- */

	$(".iframe").fancybox({
		'width'				: '75%',
		'height'			: '75%',
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
	
	$(".video").fancybox({
		'width'				: '80%',
		'height'			: '90%',
		'autoScale'			: true,
		'padding'			: 0,
		'wmode'             : 'transparent',
		'type'				: 'iframe'
	});
	
	$("#video").hide();
	
	$("#videolink a").hover(function(){
	   $(this).find("img").stop(true,true).animate({opacity: 0}, 400);
	},function(){
	    $(this).find("img").stop(true,true).animate({opacity: 1}, 400);
	});
	
});
