Die Funktion ist nicht definiert - Uncornt ReferenceError

//declare the function outside the ready() function
function YourFunctionName() {
	//your code
}

$(document).ready(function(){
    // Other code
});
Isaac