$(document).ready(function(){
	$(".caption").stop().fadeTo("slow", 0.0);
	$(".next").stop().fadeTo("slow", 0.6);
	$(".prev").stop().fadeTo("slow", 0.6);
	$(".latest-img").hover(function(){
			$(".caption").stop().fadeTo("slow", 0.3);
		},function(){
			$(".caption").stop().fadeTo("slow", 0.0);
	});
	$(".next").hover(function(){
			$(this).stop().fadeTo("fast", 1.0);
		},function(){
			$(this).stop().fadeTo("slow", 0.3);
	});
	$(".prev").hover(function(){
			$(this).stop().fadeTo("fast", 1.0);
		},function(){
			$(this).stop().fadeTo("slow", 0.3);
	});
});