﻿$(document).ready(function() {

    $("#details-gallery li img").bind("mouseenter", function() {
        $(this).css("height", "120px");
    });
    $("#details-gallery li img").bind("mouseleave", function() {
        $(this).css("height", "60px");
    });
});
