I want to reference an element once and then reuse it threw out my code but I'm not sure the correct way. Below is what I tried but it only works in some places. (EDIT: works, had an error farther up in my code, but I'm still curious if this is the best practice or not.)
$(document).ready(function() {
var image = $("#content img");
image.wrap("<span />");
image.hover(function(){}, function(){});
});