src, CSS ( , ). , , , src src, , :
function toggleImgSrc(jQueryObj) {
tmp = jQueryObj.attr('src');
jQueryObj.attr('src', jQueryObj.attr('toggle_src'));
jQueryObj.attr('toggle_src', tmp);
}
, "toggle_src" ( , ):
<img src="initial_image.png" toggle_src="other_image.png"/>