$(function(){
	$marquee = $("#twImg").marquee();
	
	$("#twImg a").hover(
		function(){
			var txt = $(this).attr("rel");
			
			$(this).find("img").css({"filter":"alpha(opacity=100)","-moz-opacity":"1","opacity":"1"});
		},
		function(){
			
			$(this).find("img").animate({"filter":"alpha(opacity=40)","-moz-opacity":"0.4","opacity":"0.4"},500);
		}
	);
})
