ммм. у меня работает))
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="jquery-1.10.1.min.js"></script>
<script type="text/javascript">
function two()
{
console.log(2);
}
$(document).ready(function(){
function three()
{
console.log(3);
}
$('.one').click(function()
{
two();
three();
});
});
</script>
</head>
<body>
<div class="one">123123</div>
</body>
</html>
вырежете из свое html все не нужное и скиньте сюда, посмотрим..