$(document).ready(function () { $(".izle").hide(0); $(".gel").mouseover(function () { $(this).children(".izle").show(); }); $(".gel").mouseout(function () { $(this).children(".izle").hide(); }); });