A função não é definida - Referência não capturada
//declare the function outside the ready() function
function YourFunctionName() {
//your code
}
$(document).ready(function(){
// Other code
});
Isaac