﻿$(function() {
	$(".box3 div").mouseover(function() {
		$(this).addClass("over");
	}).mouseout(function() {
		$(this).removeClass("over");
	});
});

function jump(url){
	location.href = url;
}
