jQuery(document).ready(function(){
jQuery(".hover").hover(function()
{
jQuery(this).attr("src",jQuery(this).attr("src").replace('-up','-down'));
}, function()
{
jQuery(this).attr("src",jQuery(this).attr("src").replace('-down','-up'));
});
});
