$(function() {
	$("div.box_btm p").mousedown(function(e){
		$('html ,body').animate({scrollTop:0},1000);
	});
	
	$('form input:image').rollover();
	$('img.Hover').rollover();

	$("table.round_table tr:nth-child(odd):not(:first-child)").addClass("odd");
	$("table.round_table tr:nth-child(even)").addClass("even");
	$("table.round_table tr:first-child").addClass("start");
	$("table.round_table tr:first-child td:first-child").addClass("lt");
	$("table.round_table tr:first-child td:last-child").addClass("rt");
	$("table.round_table tr:last-child td:first-child").addClass("lb");
	$("table.round_table tr:last-child td:last-child").addClass("rb");


});