// JavaScript Document
//$(function() {
// 	$('a').click(function() {
//		$('#test').fadeIn(1000);
//			});
 
 
// });

$(function() {
	$('#rtcontent img').animate({"opacity": .5});
	$('#rtcontent img').hover (function(){$(this).stop().animate ({"opacity": 1});
							  }, function() {
								 $(this).stop().animate ({"opacity": .5});									
		
	});

});


