Что-то ничего не работает, что локально, что на сервере
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="style.css" rel="stylesheet" type="text/css" />
<title></title>
</head>
<script type="text/javascript">
$(function() {
var link = 'test',
checkbox = $('#translateCheckbox')[0];
$('a[href]').click(function() {
if(checkbox.checked) document.location = link + location.href;
});
});
</script>
<body>
<form name="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>