$(function(){
	$(".featured_top").hover(function(){
			$(this).addClass("featured_top_on");
		},function(){
			$(this).removeClass("featured_top_on");
	});
	$(".featured_btm").hover(function(){
			$(this).addClass("featured_btm_on");
		},function(){
			$(this).removeClass("featured_btm_on");
	});
	$(".featured_top").click(function(){
			$first = $(".featured_pic:first");
			function Top(){
				$(".f_pics").fadeOut(500,function(){
					$first.remove();		
					$(".f_pics").append($first);
				});			
				$(".f_pics").fadeIn(500);	
			}
			var t=setTimeout(Top(),1000);
		
	});
	$(".featured_btm").click(function(){	
			$last = $(".featured_pic:last");
			function Btm(){			
				$(".f_pics").fadeOut(500,function(){
				$last.remove();
					$(".f_pics").prepend($last);
				});
				$(".f_pics").fadeIn(500);
			}
			var t=setTimeout(Btm(),1000);
	});	
});
