En los onmouseover y onmouseout o usas document.getElementById() o usa directamente this.
Ejemplo:
Código HTML:
Ver original<img src="objetos/noticias1.png" id="img1"
onmouseover="document.getElementById('img1').src='objetos/noticias2.png';"
onmouseout="this.src='objetos/noticias1.png';"
/>
Suerte.
PS: Y de paso acordate de cerrar las imágenes "/>".