// IE6 flicker bugfix
// http://blog.klustered.com/2008/04/08/ie6-background-flicker/
try { document.execCommand("BackgroundImageCache", false, true); } catch(err) {}

jQuery.noConflict();

// Use jQuery via jQuery(...)
jQuery(document).ready(function(){
	/*
	jQuery("#cfaLayer").mouseover(function(){
		jQuery("#cfaOpac").css("opacity",1).css("-moz-opacity", 1);
	});
	jQuery("#cfaLayer").mouseleave(function(){
		jQuery("#cfaOpac").css("opacity",0.66).css("-moz-opacity", 0.66);
	});
	*/
	
	jQuery("#contentRight h2:first").addClass("first");
	
	
	jQuery(".tableOddCol tr:odd td").addClass("tdOdd");
	jQuery(".tableOddCol tr:odd th").addClass("thOdd");
	
	jQuery("p.videoLink a").prettyPhotoFlv({theme: 'dark_rounded', showTitle: false, flvPlayerPath: '/fileadmin/swf/flvplayer.swf', showDescription: false});
	jQuery("p.lightbox a").prettyPhotoFlv({theme: 'dark_rounded', showDescription: false});
});
