$(document).ready(function(){

	
	var allhrefs = $('body').find('a');
	
	$.each(allhrefs,function(){
		var thishref = $(this).attr('href');
		
		
	if(typeof thishref != 'undefined'){
		var thishreflength = thishref.length;
	
		var endung = thishref.substr(thishreflength-3,thishreflength);
		if(endung == 'swf' || endung == 'flv' || endung == 'mp3'){
			//$(this).attr('rel','prettyPhoto');
			$(this).addClass('thickbox');
			
			
		
			$(this).attr('href','/fileadmin/templates/flowplayer/flowplayer.php?width=420&height=335&url='+thishref)
		}
		if(endung == 'jpg'){
			$(this).addClass('thickbox');
		}
	}
	})
	
		
		
	 $('.tx-imagecarousel-pi2').css('visibility', 'visible');
});
