Cambiar IMG SRC CSS
// You cannot do it with CSS alone
// You can with JS
element.style.src = "someImage.jpg";
// Or with jQuery
$('some-element').attr('src', 'someImage.jpg');
Kaotik