$(document).ready(function()
{
    $('.change_img').each(function()
    {
        $(this).mouseover(function(){

            img_src = $(this).attr("src");
            $('#target_img').attr({
                src: $(this).attr("src")
            });
        });

    });
});