
$(window).load(function() {
	if($("div#multiImage").length > 0) {
		//$("div#multiImage").scrollerScroll({minspeeed:0});
		$("div#multiImage").smoothDivScroll({ autoScroll: false, scrollStep: 10, scrollInterval:10});
	}
	$(".tennis").hover(function() {
		r = $(this).attr("rel");
		$("#" + r).show();
	}, function() {
		r = $(this).attr("rel");
		$("#" + r).hide();
	});
});

	
