$(document).ready(function(){
$(".hover").hover(function()
{
$(this).attr("src",$(this).attr("src").replace('-color','-grey'));
}, function()
{
$(this).attr("src",$(this).attr("src").replace('-grey','-color'));
});
});
