﻿$(function()
{
    $("#li_2").hover(
    function()
    {
        $("#iframeFix").show();
        $(this).children().children().hover(
        function()
        {
            $("#iframeFix").attr("height", "315");
        },
        function()
        {
            $("#iframeFix").attr("height", "245");
        })
    },
    function()
    {
        $("#iframeFix").hide();
    })
})
