$(document).ready(function(){
	//Fading Border
	$("#newstop img").hover(function(){
	$(this).stop().animate({"backgroundColor" : "#40331b"}, 400);
	}, function(){
		$(this).stop().animate({"backgroundColor" : "#79694C"}, 400);
	});
	//Opacity Focus
	$("#newstop img").hover(function() {
		$(this).siblings().stop().fadeTo(400,0.4);
	}, function() {
		$(this).siblings().stop().fadeTo(400,1);
	});

});
