$(document).ready(function(){
    /* hide these objects */
    $("div#contentCenter img").hover(
        function(){ $(this).attr("src",  $(this).attr("src").replace(/-sw.+/, ".jpg").replace(/uploads\/pics\//, "fileadmin/user_upload/icons/") ); },           
        function(){ $(this).attr("src",  $(this).attr("src").replace(/.jpg/, "-sw.jpg").replace(/fileadmin\/user_upload\/icons\//, "uploads/pics/") ); }
    );               
}); 