$(document).ready(function(){
	$(".escrowBottom > a").mouseover(function(){
		var pts=$(".escrowBottom > a");
		var ind=pts.index($(this))+1;
		$(".escrowBottom > a").removeClass("current");
		$(this).addClass("current");
		$(".content ul").find(".escrowItem").hide();
		$("#adobj"+ind).show();
	});
});

var id=1;
var nums=4;
function imgroll(){
	if(id>4) id=1;
	$(".escrowBottom > a").removeClass("current");
	$("#adev"+id).addClass("current");
	$(".content ul").find(".escrowItem").hide();
	$("#adobj"+id).show();
	id++;
}
setInterval("imgroll()","5000");


