
var $j = jQuery;

$j(document).ready(function() {
	$j("span.lang img").css("opacity","0.5");
	$j("span.lang-none img").css("opacity","0.5");
	$j("lang-none-akt img").css("opacity","0.5");
	
	$j(".tx-chgallery-pi1 .single .img").hover (
			function(){ 
				$j(this).css("backgroundColor","#4F637E");
			},
			function(){ 
				$j(this).css("backgroundColor","#ffffff");
			}
	);
});

