$(document).ready(function() {
			
	$(".relatedcol").fadeTo('slow', 0.2);
					
	$(".relatedcol").hover(function(){
			$(this).fadeTo('fast', 1);
		},
		function(){
			$(this).fadeTo('slow', 0.2);
	});
});
