﻿$(document).ready(function(){
    $("#_4").mouseover (function(){
        $("#img2").hide();
        $("#_4").mouseout(function(){
        $("#img2").show();
        });
    });
});
