$(function(){
var t,dincon=document.getElementById("dincon"),backg=new Image();
backg.src = "/i/roll.png";
	$("#scroll img").
		mousedown(
		function(){
			if(!$("#scroll img").index(this))
				t=window.setInterval(function(){dincon.scrollTop-=10},50);
			else
				t=window.setInterval(function(){dincon.scrollTop+=10},50);
		}).mouseup(
		function(){
			window.clearInterval(t);
		}
	);
	$(".click tr").hover(
		function(){
			$(this).css("background","url("+backg.src+")");
			window.status=$(this).find("h3 a").attr("href");
		},
		function(){
			$(this).css("background","none");
		}
	).click(
		function(){
			v=$(this).find("h3 a");
			if(v.attr("target")=="_blank")
				window.open(v.attr("href"));
			else
				window.location=v.attr("href");
		}
	);
});