AlexBJ,
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link href="style.css" rel="stylesheet" type="text/css">
<title></title>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script>
$(function() {
var link = 'http://translate.google.ru/translate?sl=en&tl=ru&js=n&prev=_t&hl=ru&ie=UTF-8&u=';
$('a[href]').click(function() {
var checked = $('#translateCheckbox').is(':checked');
if(checked) {
document.location = link + this.href;
return false
}
});
});
</script>
</head>
<body>
<form name="red" id="red">
<input type="checkbox" id="translateCheckbox" name="translateCheckbox" checked="checked">
</form>
<div id="menu">
Каталог одежды <a href="http://www.ebay.com" >aaa</a>
</div>
</body>
</html>